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

  1. Item 1
  2. Item 2
    1. Item 2a
    2. Item 2b
  3. Item 3

3.3 Checklist

4 Figures

Figure 4.1: Caption

Reference the labeled figure with Figure 4.1.

4.1 Subfigures

(a) A cat sitting
(b) A dog standing
Figure 4.2: Two animals shown as 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:

E=mc2(5.1) E = mc^2 \qquad(5.1)

Reference: Equation 5.1.

A second labeled equation:

×𝐄=𝐁t(5.2) \nabla \times \mathbf{E} = -\frac{\partial \mathbf{B}}{\partial t} \qquad(5.2)

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
Table 6.1: Periodic table excerpt

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

Doe, J. (2020). A made up article. Journal of Non-Existence.
Nash, J. (1950). Equilibrium points in n-person games. Proceedings of the National Academy of Sciences, 36(1), 48–49.

9 Cross-Reference Syntax

9.1 Prefix Suppression

Use [-@...] to remove the default prefix.

  • Figure 4.1 is the first figure in this section.
  • Equation 5.1 is the first equation here.

9.2 Grouped References and Ranges