From 72d50eed7f25f9a29b7d1a4f7683d62bfbf7264d Mon Sep 17 00:00:00 2001 From: Erich Gubler Date: Fri, 23 Mar 2018 08:52:05 -0600 Subject: [PATCH] Sass docs: try replacing `//` comments with `#` comments when they don't indicate output paths, try to resolve single-quote issue --- docs/content/documentation/content/sass.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/content/documentation/content/sass.md b/docs/content/documentation/content/sass.md index 45e27f43..e6620f32 100644 --- a/docs/content/documentation/content/sass.md +++ b/docs/content/documentation/content/sass.md @@ -22,12 +22,12 @@ structure and base name into the `public` folder: └── sass ├── style.scss // -> ./public/style.css ├── indented_style.sass // -> ./public/indented_style.css - ├── _include.scss // This file won't get put into the `public` folder, but other files can @import it. + ├── _include.scss # This file won't get put into the `public` folder, but other files can @import it. ├── assets │ ├── fancy.scss // -> ./public/assets/fancy.css │ ├── same_name.scss // -> ./public/assets/same_name.css - │ ├── same_name.sass // CONFLICT! This has the same base name as the file above, so Gutenberg will return an error. - │ └── _common_mixins.scss // This file won't get put into the `public` folder, but other files can @import it. + │ ├── same_name.sass # CONFLICT! This has the same base name as the file above, so Gutenberg will return an error. + │ └── _common_mixins.scss # This file won't get put into the `public` folder, but other files can @import it. └── secret-side-project └── style.scss // -> ./public/secret-side-project/fancy.css ```