This post is a sample page for validating template, markdown, and content-pipeline changes.
Internal file name can change over time, while public URL remains stable via frontmatter slug.
Headings And Text Styles
Emphasis
Regular text, bold text, italic text, and inline code.
Links
- Internal link: /about
- External link: Astro Docs
Blockquote
Good fixtures are boring in purpose and excellent in coverage.
Lists
- Unordered item one
- Unordered item two
- Nested item A
- Nested item B
- Ordered item one
- Ordered item two
- Ordered item three
Table
| Area | Example | Expected |
|---|---|---|
| Markdown | Heading/list/table | Renders with typography styles |
| Math | Inline and block equations | MathJax SVG output |
| Code | TypeScript and diff blocks | Shiki highlighting + copy button |
Code Blocks
type Theme = "light" | "dark";
export function nextTheme(theme: Theme): Theme {
return theme === "light" ? "dark" : "light";
}
- const isReady = false;
+ const isReady = true;
Checklist
- Markdown coverage
- Math coverage
- Code and callout coverage
- Media coverage