aboutsummaryrefslogtreecommitdiffstats
path: root/src/construct/character_reference.rs (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Add support for GFM strikethroughLibravatar Titus Wormer2022-08-221-1/+3
|
* Refactor to move more things to `util/`Libravatar Titus Wormer2022-08-191-6/+8
|
* Refactor to proof docs, grammarsLibravatar Titus Wormer2022-08-151-10/+17
|
* Refactor to move `content` to `construct`Libravatar Titus Wormer2022-08-151-2/+2
|
* Remove `match` statements if clumsyLibravatar Titus Wormer2022-08-121-9/+8
|
* Refactor to improve docs of each functionLibravatar Titus Wormer2022-08-121-7/+5
|
* Refactor to move `space_or_tab_eol` to own fileLibravatar Titus Wormer2022-08-111-6/+6
|
* Refactor to move some code to `event.rs`Libravatar Titus Wormer2022-08-111-24/+22
|
* Refactor to move some code to `state.rs`Libravatar Titus Wormer2022-08-111-9/+10
|
* Add `State::Retry`Libravatar Titus Wormer2022-08-101-2/+2
|
* Rename `State::Fn` to `State::Next`Libravatar Titus Wormer2022-08-101-4/+4
|
* Rewrite algorithm to not pass around boxed functionsLibravatar Titus Wormer2022-08-091-8/+10
| | | | | | * Pass state names from an enum around instead of boxed functions * Refactor to simplify attempts a lot * Use a subtokenizer for the the `document` content type
* Refactor to remove most closuresLibravatar Titus Wormer2022-08-021-71/+53
|
* Refactor some statesLibravatar Titus Wormer2022-08-011-0/+1
|
* Refactor to improve statesLibravatar Titus Wormer2022-07-291-86/+46
| | | | | | | | | | | | * 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`
* Refactor to work on bytes (`u8`)Libravatar Titus Wormer2022-07-291-13/+14
|
* Refactor to work on `char`sLibravatar Titus Wormer2022-07-281-30/+52
| | | | | | | | | | | | | | | Previously, a custom char implementation was used. This was easier to work with, as sometimes “virtual” characters are injected, or characters are ignored. This replaces that with working on actual `char`s. In the hope of in the future working on `u8`s, even. This simplifies the state machine somewhat, as only `\n` is fed, regardless of whether it was a CRLF, CR, or LF. It also feeds `' '` instead of virtual spaces. The BOM, if present, is now available as a `ByteOrderMark` event.
* Refactor to not pass codes aroundLibravatar Titus Wormer2022-07-251-18/+18
|
* Remove no longer needed field in `State::Ok`Libravatar Titus Wormer2022-07-251-1/+1
|
* Refactor to remove unneeded tuples in every statesLibravatar Titus Wormer2022-07-221-14/+14
|
* Refactor to pass ints instead of vecs aroundLibravatar Titus Wormer2022-07-221-9/+9
|
* Refactor to improve allocation around stringsLibravatar Titus Wormer2022-07-201-6/+4
|
* Add support for turning off constructsLibravatar Titus Wormer2022-07-181-1/+1
|
* Refactor examples of statesLibravatar Titus Wormer2022-07-181-15/+42
|
* Fix dead link in docsLibravatar Titus Wormer2022-07-181-2/+2
|
* Fix to use single array for character referencesLibravatar Titus Wormer2022-07-151-6/+8
|
* Refactor to move token types to `token`Libravatar Titus Wormer2022-07-071-21/+22
|
* Refactor code styleLibravatar Titus Wormer2022-07-051-46/+23
|
* Add docs for token typesLibravatar Titus Wormer2022-06-221-31/+37
|
* Refactor to improve a bunch of statesLibravatar Titus Wormer2022-06-211-34/+30
| | | | | | * Improve passing stuff around * Add traits to enums for markers and such * Fix “life time” stuff I didn’t understand
* Add some more enabled testsLibravatar Titus Wormer2022-06-201-2/+0
|
* Add tests for character referenceLibravatar Titus Wormer2022-06-151-1/+1
| | | | | * Fix encoding of character references * Fix unneeded remainder in `nok` state
* Reorganize to split utilLibravatar Titus Wormer2022-06-141-2/+2
|
* Add some improved docsLibravatar Titus Wormer2022-06-131-2/+4
|
* .Libravatar Titus Wormer2022-06-081-0/+237