Feat/markdown tables (#665)

* docs(contributing): add yarn to one-time docker use

* feat(markdown): add lists and tables

- add h2 example
This commit is contained in:
Enrico Sacchetti 2018-11-07 15:53:22 -05:00 committed by chad d
parent 5aa602c9e0
commit d444d081d5
2 changed files with 28 additions and 1 deletions

View File

@ -27,7 +27,7 @@ First time setup:
docker-compose build docker-compose build
# First-time setup # First-time setup
docker-compose run --rm web bundle install docker-compose run --rm web bundle install && yarn
``` ```
Starting the server: Starting the server:

View File

@ -14,6 +14,7 @@ weight: -1
```markdown ```markdown
# h1 # h1
## h2
### h3 ### h3
``` ```
@ -43,6 +44,18 @@ __bold__
`code` `code`
``` ```
### Lists
```markdown
* Item 1
* Item 2
```
```markdown
- Item 1
- Item 2
```
### Links ### Links
```markdown ```markdown
@ -109,3 +122,17 @@ codeFences.withLanguage()
```markdown ```markdown
**** ****
``` ```
### Tables
```markdown
| Column 1 Heading | Column 2 Heading |
| ---------------- | ---------------- |
| Some content | Other content |
```
```markdown
Column 1 Heading | Column 2 Heading
--- | ---
Some content | Other content
```