Markdown Syntax¶
VNote is designed around Markdown, a lightweight and easy-to-use syntax for writing, and its editor highlights this syntax in place as you type so your notes stay readable without a separate preview. There is no single standard for Markdown and many editors add their own extensions; VNote supports the widely-used basic syntax plus a few popular extensions. This page is a practical reference to what VNote understands. For the editing experience itself, see Editor Basics.
Headers¶
- At least one space is needed after the
#. - A header should occupy one entire line.
Headers feed the interactive outline, so use them to structure long notes.
Emphasis¶
*This text will be italic*
_This text will be italic_
**This text will be bold**
__This text will be bold__
*is recommended in VNote.- If the render fails, try adding a space before the first
*and after the last*. The space is usually necessary if the surrounded text begins or ends with a full-width punctuation mark.
Lists¶
Unordered¶
* Item 1
This is a text under Item 1. Notice that there are two spaces at the end of the line above.
* Item 2
* Item 2a
* Item 2b
* Item 3
To end a list, there should be one empty line above.
Ordered¶
1. Item 1
1. Item 2
Notice that the sequence number is irrelevant. Markdown renumbers the list automatically when rendering.
3. Item 3
1. Item 3a
2. Item 3b
4. Item 4
Tables¶
Images and links¶





[Link Text](/url/of/the/link)
- The
=WIDTHxHEIGHTsuffix sets the rendered image size; omit either side to set only one dimension. - Reference-style image links are not recommended — VNote will not preview those images.
You can also paste an image and VNote saves the file into the notebook and writes the link for you. See Images & Image Host for pasting, local storage, and image hosts.
Blockquotes¶
As VNote suggests:
> VNote is the best Markdown note-taking application
> ever.
>
> There are two spaces after `ever.` above to insert a
> new line.
It also suggests:
> VNote is good.
Here is another sentence within the quote.
- A space is needed after the marker
>. - For consecutive quoted lines you can add
>only on the first line.
Fenced code blocks¶
Fence code with triple backticks (or tildes) and name the language for syntax highlighting:
langis optional; if not specified, VNote won't highlight the code. For the supported languages, see Prism.- It is good practice to add one empty line before the whole fenced code block.
Inline code¶
To insert one `, enclose it with two ` ( `` ``). To insert two `` , use three ` ``.
Strikethrough¶
Task lists¶
Footnotes¶
Superscript and subscript¶
Mark¶
Alert boxes¶
Wrap a block between alert-xxx and ::: to render a colored callout:
Available variants:
alert-primary
alert-secondary
alert-success
alert-info
alert-warning
alert-danger
alert-light
alert-dark
Inline HTML¶
Where Markdown falls short, you can drop in raw HTML — for example to color text:
This pairs well with Snippets, which can wrap selected text in tags like these with a single keystroke.
Math and diagrams¶
VNote renders LaTeX math (via MathJax) and several diagram languages — Mermaid, PlantUML (puml), Graphviz (dot), Flowchart.js (flow/flowchart), and WaveDrom (wavedrom) — from fenced code blocks. These have their own page — see Math & Diagrams.
New lines and paragraphs¶
To start a new line, add two spaces at the end of the current line and continue typing. VNote provides Shift+Enter to do this for you.
To start a new paragraph, add an empty line and then continue. In general, add an empty line after a block element (such as a code block, list, or blockquote) to explicitly end it.
Rendering and extensions¶
Read mode renders your Markdown to its final form and is the basis for Export. Exactly which extensions are enabled — and details such as the flavor of tables or math delimiters — can be adjusted in Settings. If an element doesn't render as expected, check the relevant option there.