Squeegy (owner)

Revisions

gist: 209462 Download_button fork
public
Public Clone URL: git://gist.github.com/209462.git
Embed All Files: show embed
Text only #
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
REGEX: (^|, )([^,\{\};\n\t(\/*)]+)
 
CSS:
 
/* ----
Foobar
*/
body {
font: 14px Arial,Helvetica,Sans-serif;
line-height: 1.5;
}
 
It picks up the body as it should, but it also picks up Foobar in the comment section.
So how do I prevent matches on everything bewteen /* and */ ? It's already in matching
in multiline mode, I'm just not see a way to make this happen.