Can I keep an inline comment like this in my .scss file
thead {
display: table-header-group; // h5bp.com/t
}
I don’t want this comment in my CSS output.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
There are two different types of comments to consider in SASS.
//will be removed by the.scsspre-processor, and won’t appear in your.cssfile.*/are valid CSS, and will be preserved between the translation from.scssto your.cssfile.!. See http://sass-lang.com/docs/yardoc/file.SASS_REFERENCE.html#comments.It sounds like inline comments
//are what you’re looking for.