From ef8ca9798ba458de55305580ffc7d9085cee8588 Mon Sep 17 00:00:00 2001 From: Glavin Wiechert Date: Sat, 23 Apr 2016 17:13:54 -0300 Subject: [PATCH] Update markdown examples --- .../markdown/expected/test.md | 1 + .../markdown/expected/test.md | 2 ++ .../markdown/expected/yaml-front-matter-2.md | 2 +- .../markdown/expected/yaml-front-matter-3.md | 30 +++++++++++-------- .../markdown/expected/yaml-front-matter.md | 2 +- ...ont-matter-3.md => yaml-front-matter-3.md} | 0 6 files changed, 22 insertions(+), 15 deletions(-) rename examples/simple-jsbeautifyrc/markdown/original/{_yaml-front-matter-3.md => yaml-front-matter-3.md} (100%) diff --git a/examples/nested-jsbeautifyrc/markdown/expected/test.md b/examples/nested-jsbeautifyrc/markdown/expected/test.md index 6cda824..260f04f 100644 --- a/examples/nested-jsbeautifyrc/markdown/expected/test.md +++ b/examples/nested-jsbeautifyrc/markdown/expected/test.md @@ -1,4 +1,5 @@ - item + 1. one 2. two 3. three diff --git a/examples/simple-jsbeautifyrc/markdown/expected/test.md b/examples/simple-jsbeautifyrc/markdown/expected/test.md index 9eb4905..9bef71c 100644 --- a/examples/simple-jsbeautifyrc/markdown/expected/test.md +++ b/examples/simple-jsbeautifyrc/markdown/expected/test.md @@ -1,9 +1,11 @@ # heading 1 + - item - item - item ## heading 2 + 1. one 2. two 3. three diff --git a/examples/simple-jsbeautifyrc/markdown/expected/yaml-front-matter-2.md b/examples/simple-jsbeautifyrc/markdown/expected/yaml-front-matter-2.md index e94cdef..ef73802 100644 --- a/examples/simple-jsbeautifyrc/markdown/expected/yaml-front-matter-2.md +++ b/examples/simple-jsbeautifyrc/markdown/expected/yaml-front-matter-2.md @@ -1,5 +1,5 @@ --- -title: This is a title! +title: 'This is a title!' --- stuff diff --git a/examples/simple-jsbeautifyrc/markdown/expected/yaml-front-matter-3.md b/examples/simple-jsbeautifyrc/markdown/expected/yaml-front-matter-3.md index 066d0af..5f92234 100644 --- a/examples/simple-jsbeautifyrc/markdown/expected/yaml-front-matter-3.md +++ b/examples/simple-jsbeautifyrc/markdown/expected/yaml-front-matter-3.md @@ -1,23 +1,27 @@ --- -title: "This is a title!" + +title: This is a title! + name: Derek Worthen age: young -contact: null -email: "email@domain.com" +contact: +email: email@domain.com address: some location pets: - - cat - - dog - - bat -match: ! /pattern/gmi -run: ! "function () {\n \n}" +- cat +- dog +- bat +match: !!js/regexp /pattern/gim +run: !!js/function function() { } + + + --- -- item -- item +- item +- item - item -1. one +1. one 2. two -3. three - +2. three diff --git a/examples/simple-jsbeautifyrc/markdown/expected/yaml-front-matter.md b/examples/simple-jsbeautifyrc/markdown/expected/yaml-front-matter.md index 75f0737..efd85dc 100644 --- a/examples/simple-jsbeautifyrc/markdown/expected/yaml-front-matter.md +++ b/examples/simple-jsbeautifyrc/markdown/expected/yaml-front-matter.md @@ -4,4 +4,4 @@ title: this is my title description: this is my description --- - test ing +test ing diff --git a/examples/simple-jsbeautifyrc/markdown/original/_yaml-front-matter-3.md b/examples/simple-jsbeautifyrc/markdown/original/yaml-front-matter-3.md similarity index 100% rename from examples/simple-jsbeautifyrc/markdown/original/_yaml-front-matter-3.md rename to examples/simple-jsbeautifyrc/markdown/original/yaml-front-matter-3.md