1. Open the file.
To add another element in a list while preserving the continuity of the list, indent the element four spaces or one tab.
2. Find the following code block on line 21:
<html>
<head>
<title>Test</title>
</head>
3. Update the title to match the name of your website.
- First item
1. foo
2. bar
- Second item
- Third item
- Indented item
- Indented item
- Fourth item
Open the file.
To add another element in a list while preserving the continuity of the list, indent the element four spaces or one tab.
Find the following code block on line 21:
1
2
3
4
5
<html><head><title>Test</title></head></html>
Update the title to match the name of your website.
Second item
foo
bar
Third item
Indented item
Indented item
Fourth item
任务列表
1
2
3
- [x] Write the press release
- [ ] Update the website
- [ ] Contact the media
Write the press release
Update the website
Contact the media
定义列表
1
2
3
4
5
6
First Term
: This is the definition of the first term.
Second Term
: This is one definition of the second term.
: This is another definition of the second term.
First line with two spaces after.此处紧邻2个空格
And the next line.
或
First line with the HTML tag after.<br>
And the next line.
First line with two spaces after. And the next line.
缩进
1
2
3
This is the first sentence of my indented paragraph.
This is the second sentence of the paragraph.
This is the first sentence of my indented paragraph.
This is the second sentence of the paragraph.
块引用
1
2
3
4
5
6
> #### The quarterly results look great!
>
> - Revenue was off the chart.
> - Profits were higher than ever.
>
> *Everything* is going according to **plan**.
# 显示图片![The San Juan Mountains are beautiful!](https://mdg.imgix.net/assets/images/san-juan-mountains.jpg "San Juan Mountains")# 图片超链接, 点击图片跳转到某网址[![An old rock in the desert](https://mdg.imgix.net/assets/images/shiprock.jpg)](https://www.flickr.com/photos/beaurogers/31833779864/in/photolist-Qv3rFw-34mt9F-a9Cmfy-5Ha3Zi-9msKdv-o3hgjr-hWpUte-4WMsJ1-KUQ8N-deshUb-vssBD-6CQci6-8AFCiD-zsJWT-nNfsgB-dPDwZJ-bn9JGn-5HtSXY-6CUhAL-a4UTXB-ugPum-KUPSo-fBLNm-6CUmpy-4WMsc9-8a7D3T-83KJev-6CQ2bK-nNusHJ-a78rQH-nw3NvT-7aq2qf-8wwBso-3nNceh-ugSKP-4mh4kh-bbeeqH-a7biME-q3PtTf-brFpgb-cg38zw-bXMZc-nJPELD-f58Lmo-bXMYG-bz8AAi-bxNtNT-bXMYi-bXMY6-bXMYv)
给 Markdown 加注释
注释内容不会渲染. 语法: [comment]: #
1
2
3
4
5
Here's a paragraph that will be visible.
[This is a comment that will be hidden.]: #
And here's another paragraph that's visible.
Here’s a paragraph that will be visible.
And here’s another paragraph that’s visible.
提示
> :warning: **Warning:** Do not push the big red button.
> :memo: **Note:** Sunrises are beautiful.
> :bulb: **Tip:** Remember to appreciate the little things in life.
渲染后:
⚠️ Warning: Do not push the big red button.
📝 Note: Sunrises are beautiful.
💡 Tip: Remember to appreciate the little things in life.