Markdown

Markdown is a markup language.

A Markdown application converts Markdown-formatted text to HTML.

Dillinger is an online Markdown editor with preview capability.


Basic Markdown Syntax

Heading 1

Heading 2

Heading 3

Heading 4

Heading 5
Heading 6

Alt Heading 1

Alt Heading 2


Best Practices


Italic, Bold, and Code

itatic
bold
bold and italic

code

Code blocks are indented 4 space or 1 tab. If the code block is inside a list, then indent by 8 spaces or 2 tabs.

if True:
    print("Hello, World!")

Blockquotes

Make sure to put blank lines before and after blockquotes.

Nested blockquotes


Lists

Ordered Lists

  1. first
  2. second
  3. third

Unordered List

Can use -, +, or * as the symbol for a list item.


Extended Markdown Syntax

(Not available everywhere)

==highlight==

highlight

Fenced Code Block with Syntax Highlighting

p.invert {
  background-color: blue;
  color: white;
}

or

p.invert {
  background-color: blue;
  color: white;
}

Posts

Pages