Markdown Tutorial
115 words
1 minute
Markdown Tutorial
This article is a compact Markdown reference. It is useful for checking whether English content is filtered, routed, indexed, and rendered separately from Chinese content.
Block Elements
Paragraphs and Line Breaks
Separate paragraphs with one or more blank lines.
This is the first paragraph.
This is the second paragraph.
Use two trailing spaces to create a line break.
This line appears below the previous one.
Headings
Markdown supports heading levels from # to ######.
# Heading 1## Heading 2### Heading 3Blockquotes
This is a blockquote.
It can contain multiple paragraphs.
Lists
Unordered list:
- Red
- Green
- Blue
Ordered list:
- Install dependencies.
- Run the development server.
- Open the browser.
Code Blocks
function hello(name) { return `Hello, ${name}`;}
console.log(hello("Firefly"));Tables
| Feature | Supported |
|---|---|
| Links | Yes |
| Images | Yes |
| Tables | Yes |
| Code | Yes |
Inline Elements
Use links, bold text, italic text, inline code, and deleted text.

Inline HTML
Inline HTML can appear inside Markdown content.
Support & Share
If this article helped you, please share or support!
Markdown Tutorial
https://docs.bingyun.vip/en/posts/markdown/markdown-tutorial/ Related Posts Smart
1
Markdown Extensions
Markdown Extended Markdown features supported by Firefly.
2
Markdown Mermaid Diagrams
Markdown Mermaid diagram examples for English content rendering.
3
Markdown PlantUML Diagrams
Markdown PlantUML examples for checking diagram rendering.
4
Code Block Examples
Markdown Code examples for syntax highlighting and copy buttons.
5
KaTeX Math Example
Markdown Inline and block math examples rendered with KaTeX.
Random Posts Random