zoukankan      html  css  js  c++  java
  • Markdown 基础

    How to use Markdown


    H1 text.

    H2 text.

    H3 text.

    H4 text.

    H5 text.
    H6 text.

    Text

    This is italic text.
    This is also italic text.

    This is bold text.
    This is also bold text.

    This is bold italic text.
    This is also bold italic text.

    List

    Order Lists

    1. text
    2. typing
    3. just other thing

    Unorder Lists

    • text
    • typing
    • just other thing

    Block

    Code Block

    You can activate code block with backticks, _this can be useful_ for showing markdown

    even if this lines go across multiple lines```
    
        Adding 4 spaces in front of a line
        will make it into a code block.
    
    
    ##Blockquotes
    >This is a blockquote
    >This is a blockquote
    >This is a blockquote
    
    
    
    ##Links
    
    ###Normal Links
    [link cnblogs](http://www.cnblogs.com/)
    <http://www.cnblogs.com/>
    
    ###Reference Style Links
    [Baidu][1]
    [Sina!][sina]
    [Youku][]
    
    [1]: http://www.baidu.com
    [sina]: http://www.sina.com.cn
    [Youku]: http://www.youku.com
    
    ###Images are just like links
    ![cnblog](http://www.cnblogs.com//images/logo_small.gif)
  • 相关阅读:
    jQuery标准的AJAX模板
    maven库
    在 Windows7 上按照 MySQL5.7
    如何保证代码的有效性
    项目负责人的职责
    string integer == equals 转
    走近AbstractQueuedSynchronizer
    STAR
    tesseract-ocr
    Spring @Qualifier l转
  • 原文地址:https://www.cnblogs.com/skating/p/6124896.html
Copyright © 2011-2022 走看看