or   Represents a half-width space   or   Represents a full-width space    Two full-width spaces (used more often) or   Non-breaking space
HTML Basic Syntax (Supplement to Markdown)
HTML Line Break
1
<br/>
Tables
Recommended plugins:
Markdown, as a lightweight language, has limited table functionality. It is generally recommended to use HTML for complex editing, or there are some amazing websites online that can export HTML language from Excel.
Markdown Tables
1 2 3 4
| Syntax | Description | | ----------- | ----------- | | Header | Title | | Paragraph | Text |
When using hexo+markdown plugins, a folder with the same name as the .md file is automatically generated in the same directory (not sure which plugin generates it), then place local images inside it.
Markdown Images
Local image reference format:
1 2
![Image name](folder_name_same_as_md/subdirectory_name/image_name_with_extension) ![Pretend this is an image](markdownnote/pic.png)
Network image reference format:
1 2
![Image name](web_link) ![Pretend this is an image](https://aursus.github.io/netease-to-spotify/pic1.png)