Sass docs: try replacing // comments with # comments when they don't indicate output paths, try to resolve single-quote issue

This commit is contained in:
Erich Gubler 2018-03-23 08:52:05 -06:00 committed by GitHub
parent b38a504094
commit 72d50eed7f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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
```