markdown
Testing the Waters
Testing the Waters: A Sample Blog Post
This is a sample post created to exercise common Markdown features used by blogs and CMSs: frontmatter, headings, images, code blocks, math, tables, lists, blockquotes, and footnotes.
Introduction
Markdown rendering should support:
- Headings and subheadings
- Inline formatting like bold, italic, and
inline code - Code blocks with syntax highlighting
- Blockquotes and nested lists
- Tables and footnotes
- KaTeX math (inline and block)
Quick Example Code
// Simple function to greet
export function greet(name) {
return `Hello, ${name}!`;
}
console.log(greet("Reader"));