Skip to content

Instantly share code, notes, and snippets.

@tj
Created May 20, 2009 23:03
Show Gist options
  • Save tj/115145 to your computer and use it in GitHub Desktop.
Save tj/115145 to your computer and use it in GitHub Desktop.
# YYSTYPE is char *
Attribute = '[' n:Id
( '=' v:Value { printf("%s %s\n", n, v) }
| '~=' v:Value
| '^=' v:Value
| '$=' v:Value
| '*=' v:Value
)? ']'
Value = Id | String
String = '"' < (!'"' .)* > '"' { $$ = yytext }
| '\'' < (!'\'' .)* > '\'' { $$ = yytext }
Id = < ([a-zA-Z0-9_] | '-')+ > { $$ = yytext }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment