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
- Internal blog link: /blog/math-symbols-test/
- 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";
}src/examples/fixture.ts
- const isReady = false;
+ const isReady = true;
const oldTheme = "light";
const newTheme = "dark";
const selectedTheme = "dark";
const uiTheme = selectedTheme; src/examples/shiki-notation-fixture.ts
Callout style block: accent border, no line numbers, body-font content.
Boxed callout style block: accent border with subtle background and border.
Math
Inline math:
Display math:
Inline HTML
Click to expand test details
This verifies inline HTML passthrough in markdown content.
Image


Frontmatter Fixture
This page intentionally includes optional frontmatter keys used in AstroPaper demos:
modDatetime, featured, ogImage, canonicalURL, hideEditPost, and timezone.
Use this to catch regressions in schema parsing and layout metadata handling.
title: "Content Sample Example"
description: "Comprehensive markdown content sample."
pubDatetime: 2026-03-30T10:00:00.000Z
modDatetime: 2026-03-30T17:00:00.000Z
slug: "content-sample-example"
featured: false
draft: false
tags: ["astro", "markdown", "testing"]
ogImage: "../../../assets/images/ann-color-sketch-square.png"
canonicalURL: "https://annjose.com/blog/content-sample/"
hideEditPost: false
timezone: "America/Los_Angeles"frontmatter-sample.yaml
Checklist
- Markdown coverage
- Math coverage
- Code and callout coverage
- Media coverage
Comments