Skip to content

features of standardParser

Antoine Cœur edited this page Feb 4, 2016 · 4 revisions

Escaping Markdown features:

  • \ + any character will not be parsed and \ will be removed
  • `code` will not be parsed and ` will be removed
  • ``code`` will not be parsed and `` will be removed

Leading Markdown features:

  • # header1
  • ## header2
  • ...
  • * list1 item
  • ** list2 item
  • ...
  • + list1 item
  • ++ list2 item
  • ...
  • - list1 item
  • -- list2 item
  • ...
  • > quote1
  • >> quote2
  • ...

Links and images Markdown features:

  • ![text](image)
  • [text](link)
  • native detection of links like http:// and https://

Inline Markdown features:

  • **strong**
  • __strong__
  • *emphasis*
  • _emphasis_
Clone this wiki locally