From b9f97895f94d09416f3d3aa50bd058b666ec44ea Mon Sep 17 00:00:00 2001 From: Aidi Stan Date: Thu, 18 Aug 2016 11:35:46 +0800 Subject: [PATCH] Correct test examples for SASS --- .../sass/expected/test.sass | 23 +++++++++++----- .../sass/original/test.sass | 27 ++++++++++++++----- 2 files changed, 38 insertions(+), 12 deletions(-) diff --git a/examples/nested-jsbeautifyrc/sass/expected/test.sass b/examples/nested-jsbeautifyrc/sass/expected/test.sass index e80858a..aa0622b 100644 --- a/examples/nested-jsbeautifyrc/sass/expected/test.sass +++ b/examples/nested-jsbeautifyrc/sass/expected/test.sass @@ -1,7 +1,18 @@ -a { - line-height: 56px; +nav + ul + padding: 0 + margin: 0 + list-style: none - &:hover { - color: blue; - } -} + li + display: inline-block + + a + display: block + text-decoration: none + padding: 6px 12px + +html, body, +ul, ol + margin: 0 + padding: 0 diff --git a/examples/nested-jsbeautifyrc/sass/original/test.sass b/examples/nested-jsbeautifyrc/sass/original/test.sass index 44e52bb..c74fe86 100644 --- a/examples/nested-jsbeautifyrc/sass/original/test.sass +++ b/examples/nested-jsbeautifyrc/sass/original/test.sass @@ -1,6 +1,21 @@ -a { -line-height: 56px; -&:hover { - color: blue; -} -} +nav + ul + padding: 0 + + margin: 0 + list-style: none + + li + display: inline-block + + a + display: block + text-decoration: none + + + padding: 6px 12px + +html,body, +ul, ol + margin: 0 + padding: 0