Sass documentation cleanup #125
No reviewers
Labels
No labels
bug
dependencies
duplicate
enhancement
good first issue
help wanted
invalid
question
wontfix
No milestone
No project
No assignees
3 participants
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference: plume/documentation#125
Loading…
Reference in a new issue
No description provided.
Delete branch "toastal/documentation:sass-stuff"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
It's definitely Sass and not SASS, but I found it a little hard to understand the documentation as is. Sass is Sass; and it has two syntaxes, but they're both Sass.
In source/guide/instance-administration.html.md you add the following :
What is the point to precise (SCSS or indented) ? As i do not know the real difference between them it confuses me a little.
They are the same language, yes... SCSS (
*.scss
) has semicolons, braces, and isn't white space sensative. The indented synax (*.sass
) was the original syntax, but is still supported and widely used; it is white space sensative (like Python, Ruby, Haskell, etc.) so it can skip the braces and semicolons, and the mixin, etc. syntax is a tad bit different. The should be able to import from one syntax to another (some libraries may have implemented the spec poorly). I felt the Plume documentation reads like they're different languages instead of coat of paint on the same shed. My intention for adding the paranthesis was to emphasize that both syntaxes are in fact supported.@toastal Thank you for a pull request. Using correct words as you offer is good. But phrases like (SCSS or indented) might cause some confusion as @Marius says. How about to just notice extensions such as: Sass (
*.sass
or*.scss
)?View command line instructions
Checkout
From your project repository, check out a new branch and test the changes.Merge
Merge the changes and update on Forgejo.