写在前面:
如本文描述有错误,希望读到这篇文章的您能够提出批评指正。 联系方式:172310978@qq.com
参考文章:
Markdown编辑器本身是内容写作工具,本身并不支持文字排版,理论上它只是指出哪些内容是表格、哪些内容是标题、哪些是正文图片代码超链。
但是由于markdown需要输出,自带html/css整合,因此需要指定格式时可以通过内嵌html或者内嵌css来实现。
如果对Markdown 语法不够熟悉,可以查看下面两篇博客:
1、文字居中:
1 | <center>诶嘿</center> |
左对齐:
1 | <p align="left">诶嘿</p> |
2、插入图片及图片居中、定义大小
- 让图片靠左 显示
基本形式是:![这里放图片描述](这里放图片链接)
例子:![这里描述了***样的图片](https://img-prod-cms-rt-microsoft-com.akamaized.net/cms/api/am/imageFileData/RE4wHfY?ver=4766)
- 定义尺寸
<img width = '150' height ='150' src ="https://img-prod-cms-rt-microsoft-com.akamaized.net/cms/api/am/imageFileData/RE4wHfY?ver=4766"/>
- 定义大小并居中显示
<div align=center><img width = '150' height ='150' src ="https://img-prod-cms-rt-microsoft-com.akamaized.net/cms/api/am/imageFileData/RE4wHfY?ver=4766"/></div>
3、插入音乐
<iframe frameborder="no" border="0" marginwidth="0" marginheight="0" width=330 height=86 src="//music.163.com/outchain/player?type=2&id=528478901&auto=1&height=66"></iframe>
4、插入视频
不支持优酷,可以用youtube。
<iframe width="560" height="315" src="https://www.youtube.com/embed/Ilg3gGewQ5U" frameborder="0" allowfullscreen></iframe>
5、跳转链接
1 | <a href="http://askunix.top/" target="_blank">跳到自己博客列表</a> |
跳到自己博客列表
跳到自己博客列表:
http://askunix.top/
6、使用标准字体
1 | <font face="黑体">我是黑体字</font> |
7、多种矩阵形式输入
- 不带括号的:
1 | $$\begin{matrix} |
- 带大括号的:
1 | $$\left\{ |
- 带中括号的
1 | $$\left[ |
本文转自 https://blog.csdn.net/m0_37925202/article/details/80461714,如有侵权,请联系删除。