美文网首页
Markdown使用规范

Markdown使用规范

作者: 内蒙小猿 | 来源:发表于2020-08-20 08:25 被阅读0次
##引用
***

> 引用 https://www.jianshu.com/p/148e26058916
>> 二级引用
>>> 三级引用
>>>> 四级 
***

引用


引用 https://www.jianshu.com/p/148e26058916

二级引用

三级引用

四级



## 各级标题
***
#一级标题
##二级标题
###三级标题
####四级标题
#####五级标题
######六级标题
***

各级标题


一级标题

二级标题

三级标题

四级标题

五级标题
六级标题

***

  - 文本一
  - 文本二
  - 文本三
  
***  

## 有序列表
***

  1. 文本一
  2. 文本二
  3. 文本三

***

无序列表


  • 文本一
  • 文本二
  • 文本三

有序列表


  1. 文本一
  2. 文本二
  3. 文本三

## 网址 和 连接
***
  
  [网址](<http:baidu.com>)
  
  [插入链接](https://www.jianshu.com/p/148e26058916)
  
***


## 图片
***
[图片上传失败...(image-2111c6-1597883480834)]
<img src="https://github.com/IT-ZhongPeng/ZJPopUpView/blob/master/effect.gif" width=256 />

***

网址 和 连接


网址

插入链接


图片


[图片上传失败...(image-7f0408-1597883480834)]
<img src="https://github.com/IT-ZhongPeng/ZJPopUpView/blob/master/effect.gif" width=256 />



##代码块  

###在MarkDown中,建立代码区块,只要在文本前添加制表符或者4个空格就可以,例如:  

      - (instancetype)initWithFrame:(CGRect)frame {
          if (self = [super initWithFrame:frame]) {
              [self createUI];
              self.backgroundColor = [UIColor whiteColor];
          }
          return self;
      }             
      

##粗体

***

**粗体**

***
      
##斜体        
***

*斜体*

*** 

代码块

在MarkDown中,建立代码区块,只要在文本前添加制表符或者4个空格就可以,例如:

    - (instancetype)initWithFrame:(CGRect)frame {
        if (self = [super initWithFrame:frame]) {
            [self createUI];
            self.backgroundColor = [UIColor whiteColor];
        }
        return self;
    }             

粗体


粗体


斜体


斜体


##表格

###:-------------:  居中显示

### -------------:  靠右显示

### -------------   靠左显示
***
       
| Tables        | Are           | Cool  |
| ------------- |:-------------:| -----:|
| col 3 is      | right-aligned | $1600 |
| col 2 is      | centered      |   $12 |
| zebra stripes | are neat      |    $1 |

***
       
##虚横线
### 三个星号或者三个减号或者三个下划线即可生成

***
---


## 实线
###   用 - 创建实线

-

表格

:-------------: 居中显示

-------------: 靠右显示

------------- 靠左显示


Tables Are Cool
col 3 is right-aligned $1600
col 2 is centered $12
zebra stripes are neat $1

虚横线

三个星号或者三个减号或者三个下划线即可生成



实线

用 - 创建实线

##文本突出显示 
***

`文本突出显示`

***     


##字体、颜色、大小      

* [16进制颜色](http://www.w3school.com.cn/cssref/css_colorsfull.asp)

***

<font face="黑体">我是黑体字</font>

<font face="微软雅黑">我是微软雅黑</font>

<font face="STCAIYUN">我是华文彩云</font>

<font color=#0099ff size=12 face="黑体">黑体</font>

<font color=#00ffff size=3>null</font>

<font color=gray size=5>gray</font>
        
***


        
##段落缩进(空格)      

***
        
半方大的空白&ensp;或&#8194;看,飞碟

全方大的空白&emsp;或&#8195;看,飞碟

不断行的空白格&nbsp;或&#160;看,飞碟

&emsp;&emsp;段落从此开始。     
        
***     

文本突出显示


文本突出显示


字体、颜色、大小


<font face="黑体">我是黑体字</font>

<font face="微软雅黑">我是微软雅黑</font>

<font face="STCAIYUN">我是华文彩云</font>

<font color=#0099ff size=12 face="黑体">黑体</font>

<font color=#00ffff size=3>null</font>

<font color=gray size=5>gray</font>


段落缩进(空格)


半方大的空白 或 看,飞碟

全方大的空白 或 看,飞碟

不断行的空白格 或 看,飞碟

  段落从此开始。


相关文章

网友评论

      本文标题:Markdown使用规范

      本文链接:https://www.haomeiwen.com/subject/ghsdjktx.html