From 916412b51b488caa9fe2c0ef90b72f1b39560aaf Mon Sep 17 00:00:00 2001 From: Robert Lord Date: Mon, 7 Oct 2013 12:49:12 -0700 Subject: [PATCH] Update syntax.md Fixed another problem where the table example would show up as an actual table instead of a markdown example. --- syntax.md | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/syntax.md b/syntax.md index e804c3c..b4b42f1 100644 --- a/syntax.md +++ b/syntax.md @@ -54,10 +54,12 @@ Code annotations are essentially the same thing as paragraphs, but they'll appea Slate uses PHP Markdown Extra style tables: - 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 +```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 +``` Note that the pipes do not need to line up with each other on each line.