zoukankan      html  css  js  c++  java
  • markdown基本语法

    # 一级标题
    
    ## 二级标题
    
    ### 三级标题
    
    #### 四级标题
    
    ##### 五级标题
    
    ###### 六级标题 最小只有六级标题
    
    

    一级标题

    二级标题

    三级标题

    四级标题

    五级标题
    六级标题 最小只有六级标题
    **我被加粗了**
    
    *我倾斜了*
    
    ==我高亮了==
    
    

    我被加粗了

    我倾斜了

    我高亮了

    上标

    2^2^
    

    22

    下标

    H~2~O
    

    H2O

    代码引用

    > hello markdown
    

    hello markdown

    >>hello markdown
    

    hello markdown

    代码引用(```式)

    \`\`\`
    
    print('hello nick')
    
    \`\`\`
    
    

    ```

    print('hello nick')

    ```

    代码引入(`式)

    \`print(‘hello,nick’) \`
    

    `print(‘hello,nick’) `

    插入链接(链接描述显示)

    [aden668博客](https://home.cnblogs.com/u/aden668/)
    

    aden668博客

    插入图片

    ![](https://timgsa.baidu.com/timg?image&quality=80&size=b9999_10000&sec=1564028635734&di=8b536efe03d5e63124fd1cf33db62ef3&imgtype=0&src=http%3A%2F%2Fpic31.nipic.com%2F20130801%2F11604791_100539834000_2.jpg)
    
    

    插入图片路径

    ![](C:Users快乐的单身狗PicturesSaved PicturesQQ图片20171109104940.jpg)
    

    ![](C:Users快乐的单身狗PicturesSaved PicturesQQ图片20171109104940.jpg)

    有序列表

    1. one
    2. two
    3. three
    
    1. one
    2. two
    3. three

    无序列表

    * one
    * two
    * three
    
    • one
    • two
    • three
    ---
    

    分割线

    name|age|sex|class
    :-:|:-|-:|:-
    tony|20|男|21班
    lucy|18|女|11班
    
    name age sex class
    tony 20 21班
    lucy 18 11班

    数学公式(行内嵌)

    $sum_{i=1}^{10}f(i)\,\,	ext{thanks}$
    

    $sum_{i=1}^{10}f(i),, ext{thanks}$

    数学公式(块状)

    $$
    sum_{i=1}^{10}f(i)\,\,\,	ext{thanks}
    $$
    

    $$
    sum_{i=1}^{10}f(i),,, ext{thanks}
    $$

  • 相关阅读:
    微信小程序支付完整示例
    二分查找,冒泡排序, 快速排序
    JQuery放大镜效果
    js瀑布流
    linux安装字体
    使用phantomjs截图【php】
    安装supervisor
    mysql报错:BIGINT UNSIGNED value is out of range
    curl https报错: curl: (35) SSL connect error
    给www用户添加登录权限
  • 原文地址:https://www.cnblogs.com/aden668/p/11246519.html
Copyright © 2011-2022 走看看