OCaml HTML5 parser/serialiser based on Python's JustHTML
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at f7c69be4eae5476a0985d55de71f2cc34c8d5361 17 lines 265 B view raw
1(* CSS selector token types *) 2 3type t = 4 | Tag of string 5 | Id of string 6 | Class of string 7 | Universal 8 | Attr_start 9 | Attr_end 10 | Attr_op of string 11 | String of string 12 | Combinator of string 13 | Comma 14 | Colon 15 | Paren_open 16 | Paren_close 17 | EOF