Add a flag to emit ASCII-only output
See original GitHub issueI’m working with Sass 3.4.
My sass source code is:
#test
content: "\f000"
when parsed it got converted to:
#test {
content: "";
}
I’m using expanded style and sass syntax. I’ve noticed that switching to scss works correctly, anyway my entire codebase is in sass format 😦
Is there any way to preserve original content unicode string?
Thanks in advance
Issue Analytics
- State:
- Created 9 years ago
- Reactions:21
- Comments:102 (28 by maintainers)
Top Results From Across the Web
ASCII" option flag with the SAVE function add extra end-of-line ...
When I create or load data into MATLAB and then write it out to a file using the SAVE function with the -ascii...
Read more >ASCII Conversion Chart
This is my reconstruction of a chart that I used while teaching microprocessor programming. It is derived from a chart that I believe...
Read more >3.7 Options to Control Diagnostic Messages Formatting
Only meaningful in line-wrapping mode. Instructs the diagnostic messages reporter to emit the same source location information (as prefix) for physical lines ...
Read more >Dart Sass Command-Line Interface
If no output location is passed, the compiled CSS is printed to the terminal. ... This flag tells Sass only to emit ASCII...
Read more >Change output format for MySQL command line results to CSV
I can get rid of the header with mysql <stuff> | tail -n +2 , but that's a bother I'd like to avoid...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop 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
Top GitHub Comments
I was able to create a backwards solution for generating the proper output for the font content declarations
And then the generated CSS:
This works for the current 3.4.x gem of Sass
Alternatively you can use gulp-sass-unicode ( for gulp of course )