Skip to main content
  1. Series/

Essential Markdown Syntax

·
ZenithXH
Author
ZenithXH
About
Table of Contents
About New Blog - This article is part of a series.
Part 2: This Article

Inspired by the Markdown Style Guide, this document builds a comprehensive syntax knowledge system.

Note: All syntax demonstrations include code blocks paired with live rendering previews


Heading Hierarchy
#

### H3 Heading
#### H4 Heading
------

H3 Heading
#

H4 Heading
#


Text Formatting System
#

*Italic text* or _Emphasized content_  
**Bold importance** or __Critical information__  
Combo: **Bold with _nested italics_**  

Italic text or Emphasized content
Bold importance or Critical information
Combo: Bold with nested italics

List Management
#

1. Primary list item
2. Secondary explanation
   - Unordered subitem
3. Auto-number continuation
   * Mixed list types
     + Third-level nesting
  1. Primary list item
  2. Secondary explanation
    • Unordered subitem
  3. Auto-number continuation
    • Mixed list types
      • Third-level nesting

Interactive Elements
#

[Inline link](//ai.com)
[Title-enhanced link](//ai.com "hover tooltip (deepseek)")
[Relative path reference](../hugo-blowfish-blog-setup)

Inline link Title-enhanced link Relative path reference

Table Implementation
#

| Status | Code Sample      | Description      |
|--------|------------------|------------------|
| OK     | `200 OK`         | Standard response|
| Error  | `404 Not Found`  | Resource missing |
Status Code Sample Description
OK 200 OK Standard response
Error 404 Not Found Resource missing

Blockquote Separation
#

> Multi-line blockquotes automatically merge  
> Supports **formatting** and `code` nesting
---
*** or ___ horizontal rules

Multi-line blockquotes automatically merge
Supports formatting and code nesting


*** or ___ horizontal rules

Extended Features
#

<kbd>Ctrl</kbd>+<kbd>Alt</kbd>+<kbd>Del</kbd>
<table><!-- HTML table extension -->

Ctrl+Alt+Del

Media Embedding
#

[![Bilibili Channel](https://ts2.cn.mm.bing.net/th?id=ODLS.e42d2c4d-ad65-4c7a-b0fd-817a1c3bed01&w=32&h=32)](//space.bilibili.com/321210964)

> Citation example:  
> — <cite>【Original】History & Culture Primer[^1]</cite>  
> [^1]: Excerpt from Bilibili_ZenithXH (2024-08-13). Watch [full video](https://www.bilibili.com/video/BV1ScYBeaEN5).

Bilibili Channel

Citation example:
【Original】History & Culture Primer1


  1. Excerpt from Bilibili_ZenithXH (2024-08-13). Watch full video↩︎

About New Blog - This article is part of a series.
Part 2: This Article

Related

Crafting a Personal Blog with Hugo and Blowfish
A description
Test
·1 min