Demo
Markdown & LaTeX Showcase
2025/09/23 09:53 a minute markdown latex astro
Welcome! This page demonstrates common Markdown features used in this site, plus LaTeX math. Use it as a reference when writing new content.1
Headings
H3 Heading
H4 Heading
Text styles
You can write regular paragraphs with inline styles like bold, italic, and inline code. Links also work: Astro.
Blockquotes highlight important remarks or notes.
Lists
- Unordered item one
- Unordered item two
- Nested item
- Ordered one
- Ordered two
- Task done
- Task pending
Code blocks
// TypeScript example
type User = {
id: string;
name: string;
};
export function greet(user: User): string {
return `Hello, ${user.name}!`;
}
# Shell example
pnpm install
pnpm run dev
Table
| Feature | Supported | Notes |
|---|---|---|
| Headings | Yes | H2–H4 styled by Prose |
| Lists | Yes | Ordered and unordered |
| Code | Yes | Fenced with language |
| Tables | Yes | Markdown tables |
Image
Local content assets can be referenced relative to this file:

LaTeX math
Inline math uses dollar signs, for example: , or conditional probability (P(A\mid B) = \frac{P(A \cap B)}{P(B)}).
Block math uses double dollar signs:
You can also align multiple equations:
Matrices are supported by many renderers:
Footnotes
Footnotes help with references and asides.2