Browse Source

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

index-subcmd
Erich Gubler GitHub 6 years ago
parent
commit
72d50eed7f
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 3 deletions
  1. +3
    -3
      docs/content/documentation/content/sass.md

+ 3
- 3
docs/content/documentation/content/sass.md 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
```


Loading…
Cancel
Save