# Markdown 內嵌 HTML 參考文章: [Markdown文件](https://markdown.tw/) ## 範例一 #### Markdown 1. bird 2. Mchale 3. Parish #### HTML <ol> <li>Bird</li> <li>McHale</li> <li>Parish</li> </ol> ## 範例二 #### Markdown *single asterisks* _single underscores_ **double asterisks** __double underscores__ #### HTML <em>single asterisks</em> <em>single underscores</em> <strong>double asterisks</strong> <strong>double underscores</strong>