zoukankan      html  css  js  c++  java
  • [转] 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.

  • 相关阅读:
    经常使用排序算法时间复杂度和空间复杂度简析
    Android触碰事件
    opencv矩阵运算(2)
    [ACM] HDU 1400 Mondriaan&#39;s Dream (状态压缩,长2宽1长方形铺满)
    指针知识梳理8- 指针的指针
    Git学习笔记(一)
    Object-c Associated Object
    YTUOJ-计算该日在本年中是第几天(用户自己定义类型)
    MYSQL源代码编译的变动
    手机端小问题整理
  • 原文地址:https://www.cnblogs.com/baoguo/p/5127925.html
Copyright © 2011-2022 走看看