May 5, 2026·
#markdown#tutorial
Markdown tutorial
Markdown is Spote's default format allthough you can edit notes in the wysiwyg-editor with no knowledge of markdown. This post describes the core markdown syntax.
# This is the largets header
Text content below
## This is the second largest header
Text content below
### This is the third largest header
Text content below
**This is bold text** and this is *italic text* and [this is a link](https://spote.cloud)
* This is a bullet
* This is another list item in the bullet list
1. This is an ordered list
2. This is another list item in the ordered list
* [ ] This is a tasklist
* [ ] This is another list item in tasklist
> This is a quote
> This is another quote
A divider below:
***
An image below:

A table below:
| Column A Header | Column B Header | Column C Header |
| :-------------- | :-------------- | :-------------- |
| Row 1, Column A | Row 1, Column B | Row 1, Column C |
| Row 2, Column A | Row 2, Column B | Row 2, Column C |
This is the largets header
Text content below
This is the second largest header
Text content below
This is the third largest header
Text content below
This is bold text and this is italic text and this is a link
-
This is a bullet
-
This is another list item in the bullet list
- This is an ordered list
- This is another list item in the ordered list
-
This is a tasklist
-
This is another list item in tasklist
This is a quote This is another quote
A divider below:
An image below:

A table below:
| Column A Header | Column B Header | Column C Header |
|---|---|---|
| Row 1, Column A | Row 1, Column B | Row 1, Column C |
| Row 2, Column A | Row 2, Column B | Row 2, Column C |
#markdown #tutorial