Skip to content
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

correct handling of escaped quotes #5

Closed
stoyan opened this issue Nov 19, 2013 · 2 comments
Closed

correct handling of escaped quotes #5

stoyan opened this issue Nov 19, 2013 · 2 comments
Labels

Comments

@stoyan
Copy link

stoyan commented Nov 19, 2013

this confuses the parser:

  .sele {
    content: "he\"lo";
  }

this is ok:

  .sele {
    content: "helo";
  }
{ type: 'property', 
  name: 'content', 
  value: '"helo"' }
@stoyan
Copy link
Author

stoyan commented Nov 19, 2013

another example is the box model hack

.sele {
  voice-family: "\"}\""; 
  voice-family:inherit;
}

@brettstimmerman
Copy link
Owner

Ouch. Good catch @stoyan.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

2 participants