Update syntax.md

Fixed another problem where the table example would show up as an actual table instead of a markdown example.
This commit is contained in:
Robert Lord 2013-10-07 12:49:12 -07:00
parent 6155c542a3
commit 916412b51b

View file

@ -54,10 +54,12 @@ Code annotations are essentially the same thing as paragraphs, but they'll appea
Slate uses PHP Markdown Extra style tables: Slate uses PHP Markdown Extra style tables:
Table Header 1 | Table Header 2 | Table Header 3 ```markdown
-------------- | -------------- | -------------- Table Header 1 | Table Header 2 | Table Header 3
Row 1 col 1 | Row 1 col 2 | Row 1 col 3 -------------- | -------------- | --------------
Row 2 col 1 | Row 2 col 2 | Row 2 col 3 Row 1 col 1 | Row 1 col 2 | Row 1 col 3
Row 2 col 1 | Row 2 col 2 | Row 2 col 3
```
Note that the pipes do not need to line up with each other on each line. Note that the pipes do not need to line up with each other on each line.