Full Feature Demonstration
14 March 2026
This page demonstrates the Markdown and Quarto features supported by this Astro site.
This page restores the old feature-tour structure, but updates each example to the Quarto syntax that now powers src/pages/posts/*.md.
1 Headers
The Astro layout owns the page title, so the visible page <h1> is the post title above this content. Inside the Markdown body, Quarto top-level sections still start with #, but they render one level below that page title.
1.1 This is a Heading h2
1.1.1 This is a Heading h3
1.1.1.1 This is a Heading h4
2 Formatting
This text will be italic.
This text will be bold.
You can combine them.
2.1 Blocks of Code
let message = "Hello world";
alert(message);
2.2 Inline Code
This web site is using markedjs/marked as an example of inline code formatting.
2.3 Blockquotes
Blockquotes are supported with the standard
>syntax.Nested blockquotes are also supported.
3 Lists
3.1 Unordered
- Item 1
- Item 2
- Item 2a
- Item 2b
- Item 3
3.2 Ordered
- Item 1
- Item 2
- Item 2a
- Item 2b
- Item 3
3.3 Checklist
4 Figures
Reference the labeled figure with Figure 4.1.
4.1 Subfigures
Reference the whole group with Figure 4.2. Reference the children with Figure 4.2 (a) and Figure 4.2 (b).
Quarto figures documentation: https://quarto.org/docs/authoring/figures.html
5 Equations
Display math is labeled reliably in this site with trailing Quarto ids.
Equation labeled after the block:
Reference: Equation 5.1.
A second labeled equation:
Reference: Equation 5.2.
6 Tables
Tables use the standard Pandoc/Quarto caption paragraph syntax : Caption {#tbl-label}.
| Element | Symbol | Electrons |
|---|---|---|
| Hydrogen | H | 1 |
| Helium | He | 2 |
See Table 6.1.
Quarto table documentation: https://quarto.org/docs/authoring/tables.html
7 Citations
Quarto citation rendering still works inside the Astro page shell.
Standard citation: Nash (1950)
In-text citation: (Doe, 2020)
Multiple citations: (Doe, 2020; Nash, 1950)
8 References
9 Cross-Reference Syntax
9.1 Prefix Suppression
Use [-@...] to remove the default prefix.
9.2 Grouped References and Ranges
- Figures: Figure 4.1
- Equations: Equation 5.1, Equation 5.2
- Tables: Table 6.1