Mention indentedSyntax in the README.md
See original GitHub issueI was very clueless, after I got an error, when I was trying to compile sass instead of scss.
Invalid CSS after "": expected 1 selector or at-rule, was "body"
So I think you would help a couple of people if you’d just mention in the Readme, that:
“In case you want to work with sass and not scss, add the indentedSyntax option”.
Keep up the good work 😃
Issue Analytics
- State:
- Created 8 years ago
- Reactions:1
- Comments:13 (2 by maintainers)
Top Results From Across the Web
Basic writing and formatting syntax - GitHub Docs
You can indicate emphasis with bold, italic, strikethrough, subscript, or superscript text in comment fields and .md files. Style, Syntax, Keyboard shortcut ...
Read more >How to indent a few lines in Markdown markup?
Note, however, that if using your markdown on GitHub, such as in a README, GitHub blocks all custom CSS, as I and others...
Read more >Basic Syntax - Markdown Guide
To create code blocks, indent every line of the block by at least four spaces or one tab. <html> <head> </head> </html>. The...
Read more >Markdown Syntax Documentation - Daring Fireball
To produce a code block in Markdown, simply indent every line of the block by at least 4 spaces or 1 tab. For...
Read more >Markdown Basics — markdown-guide 0.1 documentation
To specify an entire block of pre-formatted code, indent every line of the block by 1 tab or 4 spaces. Ampersands and angle...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
I use sass-loader 4.0.2 but have the same error. I’m not sure what I should do now… 😕
@tiiger I am using 5.0.0 but still had to add
indentedSyntax=true
. Check this line fromwebpack.config.js
(webpack 1.14):loaders: ["style-loader", "css-loader", "sass-loader?indentedSyntax=true"]
Without this I still got “Invalid CSS…” error