美文网首页
MarkDown语法

MarkDown语法

作者: 三十一_iOS | 来源:发表于2016-06-27 09:42 被阅读23次

    Text using Markdown syntax Corresponding HTML produced by a Markdown processor Text viewed in a browser
    Heading
    =======
    Sub-heading


    Another deeper heading

    Paragraphs are separated
    by a blank line.

    Two spaces at the end of a line leave a
    line break.

    Text attributes italic, italic, bold, bold, monospace.

    Horizontal rule:


    Bullet list:

    • apples
    • oranges
    • pears

    Numbered list:

    1. apples
    2. oranges
    3. pears

    A link.

    哈哈哈哈

    哈哈哈

    - (void)setEmptyView:(UIView *)emptyView
    {
        [self willChangeValueForKey:@"HJEmptyView"];
        objc_setAssociatedObject(self, &UITableViewEmptyView,
                                 emptyView,
                                 OBJC_ASSOCIATION_ASSIGN);
        [self didChangeValueForKey:@"HJEmptyView"];
    }
    

    相关文章

      网友评论

          本文标题:MarkDown语法

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