• [转] Markdown


    转自 https://en.wikipedia.org/wiki/Markdown#Example

    英文版本 - http://daringfireball.net/projects/markdown/syntax

    繁体版本 - http://markdown.tw/

    简体版本 - http://www.appinn.com/markdown/

    好用的Markdown编辑器一览 - http://www.williamlong.info/archives/4319.html
    Markdown在线编辑器
    1. http://dillinger.io/
    2. https://markable.in/

    Windows 平台 - MarkdownPad(http://www.markdownpad.com/) 一款全功能的编辑器,被很多人称赞为windows 平台最好用的markdown编辑器

    优化Markdown在Notepad++中的使用体验
    1. http://www.jianshu.com/p/cdb42773fffe
    2. http://xuhehuan.com/2237.html

    text using Markdown syntaxthe corresponding HTML produced by a Markdown processorthe text viewed in a browser
    Heading
    =======
    
    Sub-heading
    -----------
     
    ### Another deeper heading
     
    Paragraphs are separated
    by a blank line.
    
    Leave 2 spaces at the end of a line to do a  
    line break
    
    Text attributes *italic*, **bold**, 
    `monospace`, ~~strikethrough~~ .
    
    Shopping list:
    
      * apples
      * oranges
      * pears
    
    Numbered list:
    
      1. apples
      2. oranges
      3. pears
    
    The rain---not the reign---in
    Spain.
    
    A [link](http://example.com).
    
    [28]
    <h1>Heading</h1>
    
    <h2>Sub-heading</h2>
    
    <h3>Another deeper heading</h3>
    
    <p>Paragraphs are separated
    by a blank line.</p>
    
    <p>Leave 2 spaces at the end of a line to do a<br />
    line break</p>
    
    <p>Text attributes <em>italic</em>, <strong>bold</strong>,
    <code>monospace</code>, <s>strikethrough</s>.</p>
    
    <p>Shopping list:</p>
    
    <ul>
    <li>apples</li>
    <li>oranges</li>
    <li>pears</li>
    </ul>
    
    <p>Numbered list:</p>
    
    <ol>
    <li>apples</li>
    <li>oranges</li>
    <li>pears</li>
    </ol>
    
    <p>The rain&mdash;not the
    reign&mdash;in Spain.</p>
    
    <p>A <a href="http://example.com">link</a>.</p>
    
    Heading
    Sub-heading
    Another deeper heading

    Paragraphs are separated by a blank line.

    Leave 2 spaces at the end of a line to do a
    line break

    Text attributes italic, bold, monospace, strikethrough.

    Shopping list:

    • apples
    • oranges
    • pears

    Numbered list:

    1. apples
    2. oranges
    3. pears

    The rain—not the reign—in Spain.

    A link.

  • 相关阅读:
    c语言的流程控制
    C语言基本用算
    C语言的scanf函数
    C语言一些知识点总结
    C语言程序
    House Robber 分类: leetcode 算法 2015-07-09 20:53 2人阅读 评论(0) 收藏
    [leetcode] Reverse Linked List 分类: leetcode 算法 2015-07-09 18:44 2人阅读 评论(0) 收藏
    合并k个已排序的链表 分类: leetcode 算法 2015-07-09 17:43 3人阅读 评论(0) 收藏
    [leetcode] Reverse Linked List
    Merge k Sorted Lists
  • 原文地址:https://www.cnblogs.com/baoguo/p/5127925.html
Copyright © 2020-2023  润新知