Synthetic post showcasing Deelan authoring features.

This sentence links to another post: Partitioning primer.

This sentence links to a snippet: Pandas groupby snippet.

Admonitions

Tip Callout

Keep headings consistent to get a clean auto-generated table of contents.

Footnotes

Inline footnote reference example1.

Another reference reusing the same footnote1.

Figure

Minimal local SVG figure
Minimal local SVG figure
Text continues below the figure block to demonstrate normal flow.

Mermaid Diagram

flowchart TD
  A["Raw Source"] --> B["Markdown Parser"]
  B --> C["HTML Output"]
  C --> D["Rendered View"]

Python Highlighting

from collections import Counter

events = ["ingest", "ingest", "validate", "build", "build", "build"]
counts = Counter(events)

for name, n in counts.items():
    print(f"{name}: {n}")

Maths Rendering

Inline math: $e^{i\pi} + 1 = 0$.

Block math:

$$ \nabla \cdot \vec{F} = \frac{\partial F_x}{\partial x} + \frac{\partial F_y}{\partial y} + \frac{\partial F_z}{\partial z} $$


  1. Footnotes are rendered at the bottom with back-links.