mirror of
https://github.com/rkd77/elinks.git
synced 2024-11-04 08:17:17 -05:00
Prepare the CSS scanner for tokenizing ~ and + as char tokens
They are used for "E ~ F" and "E + F" element relations.
This commit is contained in:
parent
d1635d6970
commit
2eebef098d
@ -48,7 +48,7 @@ static const struct scan_table_info css_scan_table_info[] = {
|
|||||||
SCAN_TABLE_STRING("\\_", CSS_CHAR_IDENT | CSS_CHAR_IDENT_START),
|
SCAN_TABLE_STRING("\\_", CSS_CHAR_IDENT | CSS_CHAR_IDENT_START),
|
||||||
/* This should contain mostly used char tokens like ':' and maybe a few
|
/* This should contain mostly used char tokens like ':' and maybe a few
|
||||||
* garbage chars that people might put in their CSS code */
|
* garbage chars that people might put in their CSS code */
|
||||||
SCAN_TABLE_STRING("[({})];:,.>", CSS_CHAR_TOKEN),
|
SCAN_TABLE_STRING("[({})];:,.>+~", CSS_CHAR_TOKEN),
|
||||||
SCAN_TABLE_STRING("<![CDATA]->", CSS_CHAR_SGML_MARKUP),
|
SCAN_TABLE_STRING("<![CDATA]->", CSS_CHAR_SGML_MARKUP),
|
||||||
|
|
||||||
SCAN_TABLE_END,
|
SCAN_TABLE_END,
|
||||||
|
Loading…
Reference in New Issue
Block a user