美文网首页程序员
Markdown常用语法入门

Markdown常用语法入门

作者: b00d1f0f0afd | 来源:发表于2018-04-03 17:04 被阅读73次

    本文介绍了一些在写作中常用的markdown语法。

    [TOC]

    TOC语法简书不支持,github支持。

    ### 1.序号
    1.  序号1
    2.  序号2
        1.  子序号
    3.  序号3
        -  无序子序号1
        -  无序子序号2
    

    1.序号

    1. 序号1
    2. 序号2
      1. 子序号
    3. 序号3
      • 无序子序号1
      • 无序子序号2
    ### 2.标题
    # 一级标题
    ## 二级标题
    ### 三级标题
    #### 四级标题
    ###### 六级标题
    

    2.标题

    一级标题

    二级标题

    三级标题

    四级标题

    六级标题
    ### 3.引用
    >这是引用
    

    3.引用

    这是引用

    ### 4.图片
    >图片推荐使用 [SM.MS](https://link.zhihu.com/?target=https%3A//sm.ms/) 图床服务
    
    ![图片.png](https://img.haomeiwen.com/i4356971/84e3ccc2e851e30d.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240)
    

    4.图片

    图片推荐使用 SM.MS 图床服务

    图片.png
    ### 5.粗斜体
    **粗体**
    *斜体*
    

    5.粗斜体

    粗体
    斜体

    ### 6.代码引用
     ``public static void main()``
    

    6.代码引用

    public static void main()

    ### 7.分割线
    
    >分割线
    

    7.分割线

    分割线

    ### 8.复选框(简书不支持,github支持)
    
    - [x]  选项一 
    - [ ]  选项二
    - [ ] 我来演示一下
    

    8.复选框(简书不支持,github支持)

    • [x] 选项一
    • [x] 选项二
    • [ ] 我来演示一下

    代码块

    注意:语法块中java和python要挨着三个点,并且三个点和上面和下面的代码要有一个空行,否则在印象笔记中无法显示!

    • python代码块
    import os
    def check_encoding(stream, encoding):
        """Test, whether the encoding of `stream` matches `encoding`.
    
        Returns
    
        :None:  if `encoding` or `stream.encoding` are not a valid encoding
                argument (e.g. ``None``) or `stream.encoding is missing.
        :True:  if the encoding argument resolves to the same value as `encoding`,
        :False: if the encodings differ.
        """
        try:
            return codecs.lookup(stream.encoding) == codecs.lookup(encoding)
        except (LookupError, AttributeError, TypeError):
            return None
    

    • java代码块
    import java.util.Map
    
    public class Test {
        public static void main(String[] args){
    //        MovieLensALS movie = new MovieLensALS();
            System.out.println("Hello, I'm Java");
             -
        }
    }
    
    

    本文作者:彭双宝**
    原文链接: http://blog.lovedata.net/5f17abcf.html

    相关文章

      网友评论

        本文标题:Markdown常用语法入门

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