- Handbook
- Company
- Company
- Board & Investors
- Communications
- Decision making and project management
- Guides
- Organizational Structure
- Principles
- Remote Work
- Security
- Access Control Policy
- AI Development and Customer Data Policy
- Asset Management Policy
- Business Continuity & Disaster Recovery Policy
- Cryptography Policy
- Data Management Policy
- Hardware Security Policy
- Human Resources Security Policy
- Incident Response Plan
- Information Security Policy and Acceptable Use Policy
- Information Security Roles and Responsibilities
- Operations Security Policy
- Risk Management Policy
- Secure Development Policy
- Third-Party Risk Management Policy
- Strategy
- Values
- Operations
- Engineering & Design Practices
- Design
- Engineering
- Marketing department
- Marketing
- Internal Operations
- People Ops
- Sales department
- Sales
- Commercial Organization
- Customer Success
- Edge Connectivity Sales Process
- Engagements & Pricing
- Forecast Review
- HubSpot
- Legal
- Partnerships
- Processes
- Professional Services
- Sales Compensation Plan
- Sales Deck
- Sales Meetings
- Sales Regions
- Sales Team Operating Principles
- Self Hosted Dashboard v2 Multi User
- Subscription Agreement 1.5
Markdown Guide
This is a very short reference guide for those trying to write Markdown. For more comprehensive guides, we recommend looking at:
Header
# First-Tier Header
## Second-Tier Header
### Third-Tier Header
#### Fourth-Tier Header
Paragraph
Hello There, this is a paragraph that is split over multiple lines in the source, but displays as a single formatted paragraph.
To start a new paragraph, we separate it with a blank line from the previous paragraph.
Hello There, this is a paragraph that is split over
multiple lines in the source, but displays as a single
formatted paragraph.
To start a new paragraph, we separate it with a blank line
from the previous paragraph.
List - Bullet Points
- this is a bullet point list
- this is another item in the list
- this is a bullet point list
- this is another item in the list
List - Numbered
- this is a numbered list
- this is another item in the list
1. this is a numbered list
2. this is another item in the list
To prevent reordering and keeping count, Markdown allows you to use non-sequential numbers:
1. Item one
1. Item two
- Item one
- Item two
Text Format - Italic
this will be italic
*this will be italic*
Text Format - Italic
this will be bold
**this will be bold**
Links
[this will be a link](http://example.com/)
Images
A picture speaks a thousand words, to include an image in your content it's like a link
but with an ! in front of it.

Adding images to handbook pages
- Place the image file in
nuxt/public/handbook/images/(or a subfolder, e.g.nuxt/public/handbook/images/screenshots/). - Reference it with an absolute path starting from
/handbook/images/:

Images in the handbook are automatically optimised on delivery — resized to fit the viewer's screen, converted to WebP or AVIF where supported, and compressed — so there is no need to manually compress or resize images before committing them. Do not run them through an external compression tool first, as that would apply lossy compression twice.
Quoting
this will quote some text
> this will quote some text
Code Example
For inline quoting, use single backticks:
For `inline` quoting, use single backticks.
For block quotes, use triple backticks:
this will write the content as if it is code
```
this will write the content as if it is code
```
Add syntax highlighting by defining the language, for example:
console.log("Hello, world!")
```js
console.log("Hello, world!")
```