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:
parent
5aa602c9e0
commit
d444d081d5
|
@ -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:
|
||||||
|
|
27
markdown.md
27
markdown.md
|
@ -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
|
||||||
|
```
|
||||||
|
|
Loading…
Reference in New Issue