初识Markdown

作者: Yully东 | 来源:发表于2016-12-21 17:08 被阅读206次

    久闻MarkDown大名,但没用过,今天正式开始学习使用,将所有MarkDown语法与快捷键总结记录如下,以便快速记忆,其中格式与内容均收集自网络,总结如下。

    一级标题:#
    二级标题:##
    三级标题:###
    四级标题:####
    五级标题:#####
    六级标题:######

    *标题最多六级*
    

    块区域:>

    无序列表:*、+、-

    • 无序列表
    • 无序列表
    • 无序列表

    有序列表:1. 2. 3.

    1. 有序列表1
    2. 有序列表2
    3. 有序列表3

    两个相连的块区域不相连方法:
    在输入完成后换行,然后在下一行输入全角空格

    (注意左方有一个全角空格)

    我是相邻的块区域二,实现了相邻的块区域不相连

    斜体:*

    我是斜体,开始和结束分别*

    粗体:**

    **我是粗体,开始和结束分别****

    粗斜体:开始和结束各三个***

    我是粗斜体

    代码框:hello,I am code. ,开始和结束各`

    <de.halfbit.pinnedsection.PinnedSectionListView xmlns:android="http://schemas.android.com/apk/res/android" android:id="@android:id/list" android:layout_width="match_parent" android:layout_height="wrap_content" android:divider="@null" android:footerDividersEnabled="false" android:headerDividersEnabled="false" />

    代码块区域:两个tab键或者四个空格
    
    <de.halfbit.pinnedsection.PinnedSectionListView
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@android:id/list"    
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:divider="@null"    
    android:footerDividersEnabled="false"
    android:headerDividersEnabled="false">
    

    链接:
    Welcome to my GitHub.
    Welocme to my 掘金 or 博客园 or 简书.

    脚注:[^content]

    你好,我是脚注hello[1]

    下划线:三个"_"


    删除线:开始和结束各两个 ~

    这是删除线

    分割线:三个***


    让 Markdown 支持代码高亮:中间包含代码,开始和结束各三个```

    <de.halfbit.pinnedsection.PinnedSectionListView
        xmlns:android="http://schemas.android.com/apk/res/android"
        android:id="@android:id/list"    
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:divider="@null"    
        android:footerDividersEnabled="false"
        android:headerDividersEnabled="false">```
    
    >跳转到目录:[ ](#index)
    跳转到[目录](#index)
    
     
    >图片: 在简书上直接拖动文件到编辑区域即可,修改图片大小即可。
    
     
    ![Mou](https://img.haomeiwen.com/i2647897/8545bfb09714bdb8.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240)
    
    ![forever.jpg](https://img.haomeiwen.com/i2647897/97d7ffb70e7641f6.jpg?imageMogr2/auto-orient/strip%7CimageView2/2/w/150)
    
    
    >表格:
    
     
    
    学号|姓名|分数
    -|-|-
    小明|男|75
    小红|女|79
    小陆|男|92
    此为简单方式||
    
    |学号|姓名|分数|
    |-|-|-|
    |小明|男|75|
    |小红|女|79|
    |小陆|男|92|
    |此为原生方式|||

    1. hi,打招呼

    相关文章

      网友评论

        本文标题:初识Markdown

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