#Markdown Functionality Test
This post demonstrates all the supported markdown features including math equations, code blocks, tables, and more.
#Headings
#H1 Heading
#H2 Heading
#H3 Heading
#H4 Heading
#H5 Heading
#H6 Heading
#Math Equations
#Inline Math
The quadratic formula is and Euler's identity is .
#Block Equations
The Gaussian integral:
Maxwell's equations in differential form:
Taylor series expansion of :
#Emphasis
Italic text or Italic text
Bold text or Bold text
Strikethrough
#Blockquotes
This is a blockquote.
Nested blockquote.
#Lists
#Unordered List
- Item 1
- Item 2
- Subitem 1
- Subitem 2
#Ordered List
- First item
- Second item
- Subitem 1
- Subitem 2
#Tables
| Feature | Supported | Notes |
|---|---|---|
| Math (KaTeX) | ✅ | Inline and block |
| Code blocks | ✅ | Syntax highlighting |
| GFM Tables | ✅ | This table! |
| Strikethrough | ✅ | |
| Images | ✅ | Responsive, rounded |
#Image
![]()
#Code Blocks
#Inline Code
Here is an example of inline code.
#Code Fences
- JavaScript
// JavaScript example
function greet(name) {
return `Hello, ${name}!`;
}
console.log(greet("World"));
- TypeScript
interface User {
id: number;
name: string;
email: string;
}
async function fetchUser(id: number): Promise<User> {
const response = await fetch(`/api/users/${id}`);
return response.json();
}
- Bash
git clone https://github.com/example/repo.git
cd repo && pnpm install && pnpm dev
That is a wrap! This post covers all the major markdown features supported by this blog.