Test

作者: wsjx123 | 来源:发表于2016-05-16 17:26 被阅读18次

    测试一下

    这是

    什么

    • like this
    • 你好吗

    加粗

    倾斜

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

    code http://www.jianshu.com/writer#/notebooks/4311714/notes/3983390/preview



    少数派

    连续回车

    才能分段。

    这些文字显示为斜体

    这些文字显示为粗体

    行的开头空4个空格,表示程序代码,例如:

    C#:

    //这里显示一些代码,在正文显示中会自动识别语言,进行代码染色,这是一段C#代码
    public class Blog
    {
         public int Id { get; set; }
         public string Subject { get; set; }
    }
    

    Python:

    keywords = ["dsaa","Asd","sadc","Gdfd","gdfdd","gaf","gabdddddd","eg"]
    print dict([(i[0],list(i[1])) for i in groupby(sorted(keywords),lambda    x:x[0].lower())])
    

    Javascript:

    /**
     * nth element in the fibonacci series.
     * @param n >= 0
     * @return the nth element, >= 0.
     */
    function fib(n) {
        var a = 1, b = 1;
        var tmp;
        while (--n >= 0) {
            tmp = a;
            a += b;
           b = tmp;
        }
        return a;
    }
    
    document.write(fib(10));
    

    表示引用文字内容。

    表示这是一级标题

    表示这是二级标题

    表示这是三级标题

    ……

    最小是六级标题

    上面是一条分隔线

    • 这是无序列表项目
    • 这是无序列表项目
    • 这是无序列表项目

    两个列表之间不能相邻,否则会解释为嵌套的列表

    1. 这是有序列表项目
    2. 这是有序列表项目
    3. 这是有序列表项目

    下面这个是嵌套的列表

    • 外层列表项目
      • 内层列表项目
        • 内层无序列表项目
          • 内层列表项目
    • 外层列表项目

    直接把一个URL显示为超级连接:

    也可以这样:图灵社区

    图像和链接非常类似,区别在开头加一个惊叹号: 这是一个Logo图像

    此外,还可以以索引方式把url都列在文章的最后,例如这样:

    图灵社区

    图灵社区Logo图灵社区Logo

    相关文章

      网友评论

          本文标题:Test

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