From 2ccf9cbe0b3864af6ae16faf177cf98472c60e2f Mon Sep 17 00:00:00 2001 From: Israel-4Ever Date: Mon, 23 May 2022 16:33:58 -0700 Subject: [PATCH] Mention the two syntaxes in /guide (#631) Closes #615 --- source/guide.html.haml | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/source/guide.html.haml b/source/guide.html.haml index a251f7a38..1b2cf2eae 100644 --- a/source/guide.html.haml +++ b/source/guide.html.haml @@ -58,7 +58,17 @@ introduction: > Sass would watch all files in the `app/sass` folder for changes, and compile CSS to the `public/stylesheets` folder. - --- + .sl-c-callout.sl-c-callout--fun-fact + :markdown + ### 💡 Fun fact: + + Sass has two syntaxes! The SCSS syntax (`.scss`) is used most commonly. It's + a superset of CSS, which means all valid CSS is also valid SCSS. The + indented syntax (`.sass`) is more unusual: it uses indentation rather than + curly braces to nest statements, and newlines instead of semicolons to + separate them. All our examples are available in both syntaxes. + + %hr %section#topic-2 :markdown