自定义 .sass 的格式化输出?
#foo {
color:black; }
当从 .sass
生成 .css
文件时,是否有某种选项可以在尾随 }
之前添加换行符?
如果有人提供一个将我正在使用的 sass --watch style.scss:style.css 与换行符要求相结合的示例,我将不胜感激。
#foo {
color:black; }
Is there some sort of option to prefix a newline before the trailing }
when a .css
file is generated from .sass
?
I would appreciate it if someone included an example of combining sass --watch style.scss:style.css
, which is what I'm using, along with this newline requirement.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以传递
--style
参数来指定您想要的内容。我认为你想要“扩展”样式:请参阅 Sass 文档 适用于不同的输出样式。
You can pass a
--style
parameter to specify what you want. I think you want the "expanded" style:See the Sass documentation for different output styles.
您可以将样式设置为展开:http://sass-lang。 com/docs/yardoc/file.SASS_REFERENCE.html#output_style
You can set the style to expanded: http://sass-lang.com/docs/yardoc/file.SASS_REFERENCE.html#output_style
我在终端中找到了上述错误的解决方案。如果是这样,您可以尝试以下对我有用的方法。
sass --watch scss:css --style 扩展
I found the above solution to error in the terminal. If so, you can try the below which worked for me.
sass --watch scss:css --style expanded