This guide covers all supported syntax for creating rich content in your notes. The editor uses an extended version of GitHub Flavored Markdown (GFM) that includes standard syntax as well as several custom HTML tags for advanced formatting.
These are the foundational elements for formatting your text.
|
Style |
Syntax |
Example |
|---|---|---|
|
Bold |
|
Bold Text |
|
Italic |
|
Italic Text |
|
|
|
|
|
|
|
|
|
Link |
|
|
|
Image |
|
An image will be displayed |
|
Blockquote |
|
> Quoted text |
|
Horizontal Rule |
|
A horizontal line will appear |
# Heading 1
## Heading 2
### Heading 3Unordered List
- Item 1
- Item 2
- Nested ItemOrdered List
1. First Item
2. Second Item
3. Third ItemYou can create checklists with interactive checkboxes directly in the editor.
- [x] Completed task
- [ ] Incomplete taskCreate tables using standard Markdown pipe syntax or raw HTML.
| Feature | Status |
| ------------- | --------- |
| Highlighting | Supported |
| Keyboard Keys | Supported |Wrap your code in triple backticks. You can specify a language for syntax highlighting.
javascript
function helloWorld() {
console.log("Hello, world!");
}
Callouts are styled blocks that help highlight important information. They use the GitHub/Obsidian-style syntax and come in four types:
You can use !INFO, !WARNING, !SUCCESS, !DANGER.
> [!INFO]
> This is an informational callout for general tips and notes.
[!INFO] In the visual editor, you can insert callouts using the
/calloutslash command and change the type by clicking the icon.
For more advanced formatting, you can use the following HTML tags directly in the editor. They will persist when switching between editor modes and will render correctly in the final view.
|
Element |
Description |
Syntax & Example |
|
Keyboard Key |
Enter |
|
|
Highlight |
important |
|
|
Subscript |
H2O. |
|
|
Superscript |
E=mc2 |
|
|
Abbreviation |
HTML |
|
|
Collapsible Section |
Click to see moreThis content is hidden by default but can be expanded |
|
|
Colored text |
Magenta text |
|
|
File Attachment |
Creates a special link formatted as a downloadable file. |
|
|
Video |
Adds an embedded video to the note. |
|
|
Image |
|