Open ghost opened 11 years ago
Currently I believe all the comments are stripped, as seen in
https://github.com/Kronuz/pyScss/blob/master/scss/__init__.py#L274
Here are the re's that do that.
https://github.com/Kronuz/pyScss/blob/master/scss/cssdefs.py#L351
I sorta need loud comments[1] atleast, so here's what I did,
_ml_comment_re = re.compile(r'\/\*[^!](.*?)\*\/', re.DOTALL) # are \/ necessary ?
[1] http://sass-lang.com/docs/yardoc/file.SASS_REFERENCE.html#comments
Is this a change still being considered? https://github.com/Kronuz/pyScss/blob/master/scss/cssdefs.py#L482 Would there be any unexpected side-effects?
Currently I believe all the comments are stripped, as seen in
Here are the re's that do that.
I sorta need loud comments[1] atleast, so here's what I did,
[1] http://sass-lang.com/docs/yardoc/file.SASS_REFERENCE.html#comments