Read original source of this page View Source

Markdown Extensions

Some extensions are included in python markdown library.

Back to basic syntax

Table

Head1 | Head2 | Head3 ----- | ----- | ----- body1 | body2 | body3 foo1 | foo2 | foo3 
Head1 Head2 Head3
body1 body2 body3
foo1 foo2 foo3
table theadtrthHead1/ththHead2/ththHead3/th/tr/thead tbody trtdbody1/tdtdbody2/tdtdbody3/td/tr trtdfoo1/tdtdfoo2/tdtdfoo3/td/tr /tbody /table 

Abbreviations

OpenVPN is one of most secure VPN. *[VPN]: Virtual Private Network 

OpenVPN is one of most secure VPN.

OpenVPN is one of most secure abbr title="Virtual Private Network"VPN/abbr. 

Attribute Lists

Add attributes to HTML tag.

Sample button [Button](http://example.com){: class="btn btn-success" title="Sample!" } {: .well } 

Sample button Button

p class="well"Sample button a class="btn btn-success" href="http://example.com" title="Sample!"Button/a/p 

Definition Lists

HTML : Hyper Text Markup Language, widely used at the Internet 
HTML
Hyper Text Markup Language, widely used at the Internet.
dl dtHTML/dt ddHyper Text Markup Language, widely used at the Internet/dd /dl 

Fenced Code Blocks

~~~~~~~~~~~~~{.python} #!/usr/bin/env python print "Hello, world!" ~~~~~~~~~~~~~ 
#!/usr/bin/env python print Hello, world! 
precode class="python"#!/usr/bin/env python print quot;Hello, world!quot; /code/pre 

Footnotes

This text[^1] has footnotes. [^1]: This is footnote 

This text1 has footnotes.


  1. This is footnote