Markdown-like formatting
Markdown-like formatting allows inserting some basic formatting by typing the Markdown equivalent. Note that this does not mean that Text notes supports Markdown, these are just some convenience shortcuts.
To import more complex formatting into text notes, consider using the Import from Markdown function. For fully-fleged Markdown notes imports, consider using the dedicated import function.
- For headings:
##for Heading 2 (the first-level heading is reserved for the note title).###for Heading 3####for Heading 4#####for Heading 5######for Heading 6
- For General formatting:
- Bold: Type
**text**or__text__ - Italic: Type
*text*or_text_ Strikethrough: Type~~text~~
- Bold: Type
- For Lists:
- Bulleted list: Start a line with
*or-followed by a space; - Numbered list: Start a line with
1.or1)followed by a space; - To-do list: Start a line with
[ ]for an unchecked item or[x]for a checked item.
- Bulleted list: Start a line with
- For block quotes, press
>, followed by a space. - For Code blocks, type
```. - For a horizontal line, type
---. - For admonitions:
!!! note!!! tip!!! important!!! caution!!! warning- Starting any other text with
!!!will insert a note admonition with the text inside of it.
- For emojis, type
:followed by an emoji name to trigger an auto-completion.
If auto-formatting is not desirable, press Ctrl + Z to revert the text to its original form.