Table Of Contents

Previous topic

Re-Structured Text Syntax

Next topic

Git Version Control

This Page

Markdown Syntax

Headings

Each document section is indicated with either a hash heading (#) or underlines:

# An H1 Heading Goes Here, or #

H1 Headings are Underlined
==========================

An H1 Heading Goes Here, or

H1 Headings are Underlined

Subsections use hyphen underlining, or (##) heading:

## This is a sub-heading ##

And this is also a sub-heading
------------------------------

This is a sub-heading

And this is also a sub-heading

Hash marks can indicate additional levels of sub-sub- headings, up to six:

###### This is a H6 sub-heading ######

Break lines are inserted with three or more hyphens, asterisks, or underscores:

___
- - -
*******

Inline Style Formatting

The following table displays inline or embedded markups for text styles:

Markup Result
*emphasized text* emphasized text
_emphasized text_ emphasized text
**bold text** bold text
__bold text__ bold text
``unformatted text`` unformatted text

Paragraphs

Paragraphs are indicated by entering two newlines, which shows as a blank line in the text. Spaces and single newlines are ignored except in lists or quotes.

Code blocks are set off by indenting 4 or more spaces, or 1 tab:

|    This will be a code block or command
|    This is another line in the code block
This will be a code block or command
This is another line in the code block

List Entries

Use hyphens, asterisks, or plusses to create bulleted (unordered) lists:

| * This is a list with an embedded list
| + + Here is an embedded line
| + + This is the second embedded line
| * This is the second main line of the list
  • This is a list with an embedded list
    • Here is an embedded line
    • This is the second embedded line
  • This is the second main line of the list

Any numbered lines with periods will form an ordered list:

1. Use number 1. on the first line of the list.
5. Follow the first line with additional numbered lines.
3. The order of the lines matters, but the number sequence is irrelevant.
  1. Use number 1. on the first line of the list.
  2. Follow the first line with additional numbered lines.
  3. The order of the lines matters, but the number sequence is irrelevant.

List items may include paragraphs provided hanging indents are used for the first line of each paragraph.

Tables

Markdown syntax does not include a specification for tables.