Notes
Item notes support markdown language, for connections notes will appear in the Info tab.
Last updated
Item notes support markdown language, for connections notes will appear in the Info tab.
Last updated
The below provides a quick overview of all the Markdown syntax elements, however we don't cover every edge case here.
These are the elements outlined in John Gruber’s original design document.
These elements extend the basic syntax by adding additional features.
Note: To sync item notes to your account a license is required.
Element
Markdown Syntax
Heading
# H1
## H2
### H3
Bold
**bold text**
Italic
*italic text*
Blockquote
> blockquote
Ordered List
1. First Item
2. Second Item
3. Third Item
Unordered List
- First Item
- Second Item
- Third Item
Code
`code`
Horizontal Line
---
Link
[title](https://www.example.com)
Image
![alt text](image.jpg)
Element
Markdown Syntax
Table
| Syntax | Description |
| ----------- | ----------- |
| Header | Title |
| Paragraph | Text |
Fenced Code Block
```
{
"firstName": "John",
"lastName": "Smith",
"age": 25
}
```
Footnote
Here's a sentence with a footnote. [^1]
[^1]: This is the footnote.
Heading ID
### My Great Heading {#custom-id}
Definition List
term:
: definition
Strikethrough
~~The work is flat.~~
Task List
- [x] Write the press release
- [ ] Update the website
- [ ] Contact the media