快速上手markdown操作

作者: 林水吉 | 来源:发表于2017-03-31 17:37 被阅读191次

    一级标题

    二级标题

    三级标题

    四级标题

    五级标题
    六级标题

    无序列表

    有序列表

    粗体

    斜体

    引用:

    This is a blockquote with two paragraphs. Lorem ipsum dolor sit amet,
    consectetuer adipiscing elit. Aliquam hendrerit mi posuere lectus.
    Vestibulum enim wisi, viverra nec, fringilla in, laoreet vitae, risus.
    This is the first level of quoting.

    This is nested blockquote.

    Back to the first level.

    这是一个标题。

    1. 这是第一行列表项。
    2. 这是第二行列表项。

    给出一些例子代码:

    return shell_exec("echo $input | $markdown_script");
    

    链接:baidu

    图片: Mouapp

    表格:

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

    代码插入:

    public static boolean test(int i, int val) { System.out.println("test: " + i); System.out.println("result: " + (i < val)); return i < val; }

    public static boolean test(int i, int val) {
        System.out.println("test: " + i);
        System.out.println("result: " + (i < val));
        return i < val;
    }
    

    相关文章

      网友评论

      • 林水吉:markdown的语法还是比较简单的,但是目前来说有些体验还不算很好,例如文字的对齐方式就不像表格里那么好操作
      • 想名字太难了:前段时间刚刚学完markdown这个语法,感觉很容易上手

      本文标题:快速上手markdown操作

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