diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2013-10-05 21:26:09 -0700 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2013-10-05 21:26:09 -0700 |
commit | e39dea5833abe29b7f6b9ba5d55f93b553a7cded (patch) | |
tree | 5e87f46369e075e8a47c8a5b97958e6cf934db63 /hc.h | |
parent | e022ebd1f2b414837b60f434e6db26e2c999207a (diff) | |
download | hc-e39dea5833abe29b7f6b9ba5d55f93b553a7cded.tar.gz hc-e39dea5833abe29b7f6b9ba5d55f93b553a7cded.tar.bz2 hc-e39dea5833abe29b7f6b9ba5d55f93b553a7cded.zip |
Attribute filtering implemented.
Diffstat (limited to 'hc.h')
-rw-r--r-- | hc.h | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -3,6 +3,7 @@ typedef enum { tok_eof = 0, tok_doctype = 256, tok_text, + tok_wsp, tok_el_unknown, tok_el_a, tok_el_abbr, @@ -219,7 +220,8 @@ typedef enum { typedef struct { int type; - int is_tag; + int is_el; + int is_at; int is_close; char *lexeme; } token_t; |