可以添加标识符,但实际上仍然是按顺序标号 Here's a simple footnote,[^1] and here's a longer one.[^bignote]
[^1]: This is the first footnote.
[^bignote]: Here's one with multiple paragraphs and code.
Indent paragraphs to include them in the footnote.
`{ my code }`
Add as many paragraphs as you like.
标题 ID heading ID
1 2 3 4 5
### My Great Heading {#custom-id} <h3id="custom-id">My Great Heading</h3> [Heading IDs](#heading-ids) <ahref="#heading-ids">Heading IDs</a> [Heading IDs](https://www.markdownguide.org/extended-syntax#heading-ids)
定义列表 definition list
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
term : definitionFirst 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.
<dl> <dt>First Term</dt> <dd>This is the definition of the first term.</dd> <dt>Second Term</dt> <dd>This is one definition of the second term. </dd> <dd>This is another definition of the second term.</dd> </dl>
# 图像说明 image captions <figure> <img src="/assets/images/albuquerque.jpg" alt="Albuquerque, New Mexico"> <figcaption>A single track trail outside of Albuquerque, New Mexico.</figcaption> </figure> or
 *A single track trail outside of Albuquerque, New Mexico.*
# link target <ahref="https://www.markdownguide.org"target="_blank">Learn Markdown!</a>
# video YouTube automatically generates an image for every video (https://img.youtube.com/vi/YOUTUBE-ID/0.jpg), so we can use that and link the image to the video on YouTube. After we replace the image alt text and add the ID of the video, our example looks like this: [](https://www.youtube.com/watch?v=PYCxct2e0zI)