What is Markdown?

Markdown is a lightweight markup language with plain text formatting syntax.  This gives you the ability to really customize templates and proposals to your specific company needs.  Markdown in our case allows a user to nicely format a template with simple key references, without knowing how to "code".


HEADINGS

Markdown HTML Rendered Output
# Heading level 1 <h1>Heading level 1</h1>

Heading level 1

## Heading level 2 <h2>Heading level 2</h2>

Heading level 2

### Heading level 3 <h3>Heading level 3</h3>

Heading level 3

#### Heading level 4 <h4>Heading level 4</h4>

Heading level 4

##### Heading level 5 <h5>Heading level 5</h5>
Heading level 5
###### Heading level 6 <h6>Heading level 6</h6>
Heading level 6

BOLD

Markdown HTML Rendered Output
I just love **bold text**. I just love <strong>bold text</strong>. I just love bold text.
I just love __bold text__. I just love <strong>bold text</strong>. I just love bold text.
Love**is**bold Love<strong>is</strong>bold Loveisbold

ITALIC

Markdown
HTML Rendered Output
Italicized text is the *cat's meow*. Italicized text is the <em>cat's meow</em>. Italicized text is the  cat’s meow.
Italicized text is the _cat's meow_. Italicized text is the <em>cat's meow</em>. Italicized text is the  cat’s meow.
A*cat*meow A<em>cat</em>meow A catmeow

LISTS

Markdown HTML Rendered Output
1. First item<br>2. Second item<br>3. Third item<br>4. Fourth item <ol><br><li>First item</li><br><li>Second item</li><br><li>Third item</li><br><li>Fourth item</li><br></ol>
  1. First item
  2. Second item
  3. Third item
  4. Fourth item
1. First item<br>1. Second item<br>1. Third item<br>1. Fourth item <ol><br><li>First item</li><br><li>Second item</li><br><li>Third item</li><br><li>Fourth item</li><br></ol>
  1. First item
  2. Second item
  3. Third item
  4. Fourth item
1. First item<br>8. Second item<br>3. Third item<br>5. Fourth item <ol><br><li>First item</li><br><li>Second item</li><br><li>Third item</li><br><li>Fourth item</li><br></ol>
  1. First item
  2. Second item
  3. Third item
  4. Fourth item
1. First item<br>2. Second item<br>3. Third item<br> 1. Indented item<br> 2. Indented item<br>4. Fourth item <ol><br><li>First item</li><br><li>Second item</li><br><li>Third item<br><ol><br><li>Indented item</li><br><li>Indented item</li><br></ol><br></li><br><li>Fourth item</li><br></ol>
  1. First item
  2. Second item
  3. Third item
    1. Indented item
    2. Indented item
  4. Fourth item

And much more...

Here are a few links with some additional resources.

Did this answer your question? Thanks for the feedback There was a problem submitting your feedback. Please try again later.