Markdown¶
表格¶
Example
<center>
| Method | Description |
| :------: | :----------------------------------: |
| `GET` | :material-check: Fetch resource |
| `PUT` | :material-check-all: Update resource |
| `DELETE` | :material-close: Delete resource |
</center>
Result
Method | Description |
---|---|
GET |
Fetch resource |
PUT |
Update resource |
DELETE |
Delete resource |
vscode 自动格式化快捷键:option + shift + F
文字¶
居中¶
Example
<center>求知若渴,虚心若愚</center>
Result
居右¶
Example
<div style="text-align: right">求知若渴,虚心若愚</div>
Result
求知若渴,虚心若愚
高亮 & 下划线 & 删除线¶
Example
==This was marked==
This was inserted^^
~~This was deleted~~
Result
This was marked
This was inserted
This was deleted
Embed¶
音乐¶
在线音频¶
Example
<center>
<audio
controls
src="https://raw.githubusercontent.com/Stardusten/coding-notes/main/resources/obito.mp3">
Your browser does not support the
<code>audio</code> element.
</audio>
</center>
Result
网易云音乐¶
Example 1
<center>
<iframe frameborder="no" border="0" marginwidth="0" marginheight="0" width=330 height=86 src="//music.163.com/outchain/player?type=2&id=32752002&auto=1&height=66"></iframe>
</center>
Result 1
Example 2
<center>
<iframe frameborder="no" border="0" marginwidth="0" marginheight="0" width=298 height=52 src="//music.163.com/outchain/player?type=2&id=32752002&auto=1&height=32"></iframe>
</center>
Result 2
视频¶
Example
<iframe src="//player.bilibili.com/player.html?aid=6410834&bvid=BV1Bs411t7Lo&cid=10421871&page=1" width=800 height=450 scrolling="no" border="0" frameborder="no" framespacing="0" allowfullscreen="true"> </iframe>
Result
PDF¶
Example
<object data="http://www.founderfx.cn/resources/support/方正书版2008-210使用指南.pdf" type="application/pdf" width="700px" height="700px">
<embed src="http://www.founderfx.cn/resources/support/方正书版2008-210使用指南.pdf">
<p>This browser does not support PDFs. Please download the PDF to view it: <a href="http://www.founderfx.cn/resources/support/方正书版2008-210使用指南.pdf">Download PDF</a>.</p>
</embed>
</object>
Result