aboutsummaryrefslogtreecommitdiffstats
path: root/src/util/decode_character_reference.rs (unfollow)
Commit message (Collapse)AuthorFilesLines
2022-10-06Add support for HTML 4 character references in JSX attributesLibravatar Titus Wormer1-93/+0
2022-08-19Refactor to move more things to `util/`Libravatar Titus Wormer1-1/+1
2022-08-16Add `no_std + alloc`Libravatar Titus Wormer1-0/+1
2022-08-15Refactor to proof docs, grammarsLibravatar Titus Wormer1-5/+5
2022-07-29Refactor to improve statesLibravatar Titus Wormer1-25/+17
* Remove custom kind wrappers, use plain bytes instead * Remove `Into`s, use the explicit expected types instead * Refactor to use `slice.as_str` in most places * Remove unneeded unique check before adding a definition * Use a shared CDATA prefix in constants * Inline byte checks into matches * Pass bytes back from parser instead of whole parse state * Refactor to work more often on bytes * Rename custom `size` to `len`
2022-07-18Fix dead link in docsLibravatar Titus Wormer1-3/+3
2022-07-15Fix to use single array for character referencesLibravatar Titus Wormer1-7/+4
2022-07-07Refactor to use `char::REPLACEMENT_CHARACTER`Libravatar Titus Wormer1-1/+1
2022-06-14Add examples to some docsLibravatar Titus Wormer1-2/+2
2022-06-14Reorganize to split utilLibravatar Titus Wormer1-0/+103