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.

  • 相关阅读:
    Note/Solution 转置原理 & 多点求值
    Note/Solution 「洛谷 P5158」「模板」多项式快速插值
    Solution 「CTS 2019」「洛谷 P5404」氪金手游
    Solution 「CEOI 2017」「洛谷 P4654」Mousetrap
    Solution Set Border Theory
    Solution Set Stirling 数相关杂题
    Solution 「CEOI 2006」「洛谷 P5974」ANTENNA
    Solution 「ZJOI 2013」「洛谷 P3337」防守战线
    Solution 「CF 923E」Perpetual Subtraction
    KVM虚拟化
  • 原文地址:https://www.cnblogs.com/baoguo/p/5127925.html
Copyright © 2011-2022 走看看