matype/postcss-style-guide

Inline coments

Closed this issue · 2 comments

Does it work with inline comments (//)?

So like this example:

// # I love Twitter Bootstrap
// 
// Use the button classes on an `<a>`, `<button>`, `<input>` element.
//
// <button class="btn">Button</button>
//
//    <button class="btn">Button</button>

.btn {
  ...
}
.btn:hover,
.btn:focus,
.btn.focus {
  ...
}

@hobi Inline comments does not work. Because PostCSS cannot parse them.

@morishitter Oh ... sure, my fault. It's "future CSS".

I still think in Sass. 😄