-
-
Notifications
You must be signed in to change notification settings - Fork 44
Stripping of comments with double quotes is not woking #49
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Changes from all commits
b42d44d
83ed581
bd56cc1
3522057
57318d5
5427a2d
cce0ec9
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,18 @@ | ||
| .@{var}-handle:after { | ||
| content: "Content At quoted String comments"; | ||
| content: ""; | ||
| } | ||
|
|
||
|
|
||
| .@{var}-handle:after{ | ||
| content : "Content After quoted String comments" | ||
| } | ||
|
|
||
| .@{var}-handle:after { | ||
| content: "Content At quoted String comments"; | ||
| } | ||
|
|
||
|
|
||
| .@{var}-handle:after{ | ||
| content : "Content After quoted String comments" | ||
| } |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,24 @@ | ||
| .@{var}-handle:after { | ||
| content: "Content At quoted String comments"; | ||
| content: ""; | ||
| } | ||
|
|
||
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Something bothers me about that file :D Why it has duplicate stuff? At least we can make it with different classes and different comments. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I just wanted to replicate multiple scenarios. Will modify :) |
||
| /* Comments without Quoted String; | ||
| */ | ||
| /*@import "Comments with Quoted String";*/ | ||
|
|
||
| .@{var}-handle:after{ | ||
| content : "Content After quoted String comments" | ||
| } | ||
|
|
||
| .@{var}-handle:after { | ||
| content: "Content At quoted String comments"; | ||
| } | ||
|
|
||
| /* Comments without Quoted String; | ||
| */ | ||
| /*@import "Comments with Quoted String";*/ | ||
|
|
||
| .@{var}-handle:after{ | ||
| content : "Content After quoted String comments" | ||
| } | ||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Space after
QUOTED_STRING_REGEX:And I think the
+should be inside, after the closing angle bracket((?:[^\1]+)?)and remove the|