If you’re new to markdown syntax, see the below selection of examples adapted from the Markdown basics Quarto documentation. Reference this primer when working through the tutorials and editing the report content.
Text formatting
| Markdown syntax | Output |
|---|---|
| italics, bold, bold italics | |
| superscript2 / subscript2 | |
verbatim code |
Links & images
| Markdown syntax | Output |
|---|---|
| https://quarto.org | |
| Quarto | |
![]() Caption
|
Learn more in the article on Figures.
Lists
| Markdown syntax | Output |
|---|---|
|
|
|
|
|
|
continues after
|
Note that unlike other Markdown renderers (notably Jupyter and GitHub), lists in Quarto require an entire blank line above the list. Otherwise the list will not be rendered in list form, rather it will all appear as normal text along a single line.
Tables
Output
| Right | Left | Default | Center |
|---|---|---|---|
| 12 | 12 | 12 | 12 |
| 123 | 123 | 123 | 123 |
| 1 | 1 | 1 | 1 |
Learn more in the article on Tables.

