blob: 37dcdf6b4b02b3b3d041c14e13c815bda9dd0f30 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
This file is used for generic comment parsing across CSS, SCSS, SASS & LESS.
There's single-line comment styles:
// This comment block has comment identifiers on every line.
//
// Fun fact: this is Kyle's favorite comment syntax!
There's block comment styles:
/* This comment block is a block-style comment syntax.
There's only two identifier across multiple lines. */
/* This is another common multi-line comment style.
*
* It has stars at the begining of every line.
*/
Some people do crazy things like mix comment styles:
// This comment has a /* comment */ identifier inside of it!
/* Look at my //cool// comment art! */
Indented comments:
// Indented single-line comment.
/* Indented block comment. */
|