Skip to content
Ann Catherine Jose

Content Sample

Updated:
Table of Contents

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.

Blockquote

Good fixtures are boring in purpose and excellent in coverage.

Lists

  • Unordered item one
  • Unordered item two
    • Nested item A
    • Nested item B
  1. Ordered item one
  2. Ordered item two
  3. Ordered item three

Table

AreaExampleExpected
MarkdownHeading/list/tableRenders with typography styles
MathInline and block equationsMathJax SVG output
CodeTypeScript and diff blocksShiki 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.

Figure test image from public directory
Figure + figcaption rendering test.

Image

Image from src/assets

Image from public/img

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