Skip to content

Commit

Permalink
Update markdown syntax documentation to include quotes.
Browse files Browse the repository at this point in the history
  • Loading branch information
wolfgangmm committed May 16, 2016
1 parent 53b3bce commit a4e3050
Showing 1 changed file with 25 additions and 2 deletions.
27 changes: 25 additions & 2 deletions data/help/Markdown.md
Expand Up @@ -41,7 +41,7 @@ return

# Lists

## Simple list
## Simple List

For an unordered list, start each item on a line with a \*:

Expand All @@ -62,7 +62,7 @@ For an ordered list, each item should start with a number followed by a period (
2. Second item
3. Third item

## Nested list:
## Nested List

Nested lists are created by adding tabs in front of the nested list items:

Expand All @@ -73,6 +73,18 @@ Nested lists are created by adding tabs in front of the nested list items:
1. Three
1. Four

## Task List

```markdown
\* [x] write documentation
\* [ ] create tests
```

becomes

* [x] write documentation
* [ ] create tests

# Links

Links can be specified directly or by reference. For example, \[this link\]\[1\] references a link definition given at the end of the document:
Expand Down Expand Up @@ -141,6 +153,17 @@ simple table | column1 | column2

simple table | column1 | column2

# Quotes

Quote paragraphs by prefixing them with a `> `:

> Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor
> incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis
> nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.
> Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore
> eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt
> in culpa qui officia deserunt mollit anim id est laborum.
# Inline HTML and blocks

You may inline HTML inside a block. For example, we can turn the following <span style="color: red">span of text into red</span>.
Expand Down

0 comments on commit a4e3050

Please sign in to comment.