Markdown Syntax Showcase
This post demonstrates common Markdown capabilities supported by Blogit, including headings, lists, links, blockquotes, code blocks, tables, images, and LaTeX.
Headings
Level 3 Heading
Level 4 Heading
You can write bold text, italic text, bold italic text, strikethrough, and inline code like const title = "Blogit";.
Links
Lists
Unordered List
-
Write locally
-
Track changes with Git
-
Publish with CI/CD
Ordered List
- Create a post folder
- Add an
index.md - Commit and push
Task List
-
Markdown support
-
Code highlighting
-
LaTeX rendering
-
More demo components
Quote
Own your content.
Platforms can distribute it, but they should not control it.
Image
Here is a local image stored with the post:

Code Blocks
type PostMeta = {
title: string;
date: string;
tags: string[];
};
export function formatPost(meta: PostMeta) {
return `${meta.title} (${meta.date})`;
}
pnpm install
pnpm --filter blog generate-index
pnpm --filter blog dev
{
"name": "markdown-syntax-showcase",
"draft": false,
"features": ["table", "image", "math", "code"]
}
Table
| Feature | Syntax | Supported |
|---|---|---|
| Bold | **text** |
Yes |
| Image |  |
Yes |
| Table | | col | |
Yes |
| Math | $E=mc^2$ |
Yes |
Horizontal Rule
Inline Math
Euler's identity:
The quadratic formula:
Block Math
Mixed Content
Here is a short example combining multiple elements:
-
Define the model:
-
Render the result as code:
def predict(m, x, b):
return m * x + b
- Document it in a table:
| Variable | Meaning |
|---|---|
m |
slope |
x |
input |
b |
intercept |
Final Note
If this post renders correctly, Blogit is handling the core Markdown syntax you expect from a modern blogging system.