January 10, 2025β’ 2Β min read
Welcome to the Second Post of our demo blog! Here we'll showcase a variety of Markdown features, including headings, lists, tables, diagrams, callouts, and more. Feel free to copy any of these snippets into your own posts.
This post demonstrates:
code
and fenced code blocks.Feature | Supported | Notes |
---|---|---|
Bold text | β | **bold** |
Italic text | β | *italic* |
Strikethrough | β | ~~strike~~ |
Task lists | β | - [ ] task |
Footnotes | β | Here[^1] |
Mermaid charts | β | Fenced with mermaid |
Here are some quick examples:
A block of text with a link to OpenAI and an image:
Math inline: Eulerβs identity is $e^{i\pi} + 1 = 0$
.
Display math:
$$
\int_{0}^{\infty} e^{-x} \, dx = 1
$$
Here's a code snippet demonstrating a simple React component:
import React from "react";
export default function Hello() {
return <div>Hello from a code block!</div>;
}
graph TD
A[Start] --> B{Is it working?}
B -- Yes --> C[Celebrate π]
B -- No --> D[Debug π]
D --> B
text test