美文网首页
Markdown语法

Markdown语法

作者: 白条围巾 | 来源:发表于2017-05-07 23:03 被阅读0次

    Markdown语法

    六级标题 1

    2

    3

    4

    5
    6
    无序列表
    • todo1
    • todo2
    • todo3
    • todo4
    有序列表
    1. todo1
    2. todo2 粗体
    3. todo3 斜体
    4. todo4
    引用内容加>

    羽毛相同的鸟,自会聚在一起。

    插入链接

    Robinkey

    插入图片
    亚里士多德亚里士多德
    表格
    Tables Are Cool
    col 3 is right-aligned $1600
    col 2 is centered $12
    zebra stripes are neat $1
    代码

    RKLaunchLoadingView *startView = [[RKLaunchLoadingView alloc] init];
        [self.window addSubview:startView];
        [startView startDone:^{
            [UIView animateWithDuration:0.5 animations:^{
                startView.alpha = 0.02f;
            } completion:^(BOOL finished) {
                [startView removeFromSuperview];
            }];
        }];
    
    var s = "JavaScript syntax highlighting";
    alert(s);
    


    var canvas = document.getElementById("canvas");
    var context = canvas.getContext("2d");
    

    相关文章

      网友评论

          本文标题:Markdown语法

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