aboutsummaryrefslogtreecommitdiffstats
path: root/src/construct (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Add tests for mdx jsx (text)Libravatar Titus Wormer2022-09-081-11/+36
|
* Add support for recoverable syntax errorsLibravatar Titus Wormer2022-09-072-53/+56
|
* Add support for unicode identifiers in JSXLibravatar Titus Wormer2022-09-071-24/+95
|
* Add initial states for MDX JSX (text)Libravatar Titus Wormer2022-09-064-47/+911
|
* Add support for `mailto:`, `xmpp:` protocolsLibravatar Titus Wormer2022-09-052-12/+54
|
* Fix some todosLibravatar Titus Wormer2022-09-053-6/+5
|
* Fix to implement GFM autolink literals exactlyLibravatar Titus Wormer2022-09-053-158/+712
|
* Add support for getting `char`s from bytesLibravatar Titus Wormer2022-09-051-21/+10
|
* Add support for GFM tagfilterLibravatar Titus Wormer2022-09-012-2/+2
|
* Add support for GFM tablesLibravatar Titus Wormer2022-08-318-29/+1077
|
* Add support for math (flow)Libravatar Titus Wormer2022-08-266-106/+205
|
* Add support for math (text)Libravatar Titus Wormer2022-08-268-239/+301
|
* Add support for GFM footnotesLibravatar Titus Wormer2022-08-2511-104/+717
|
* Fix lazy paragraph after definitionLibravatar Titus Wormer2022-08-222-10/+60
|
* Add support for GFM task list itemLibravatar Titus Wormer2022-08-223-1/+167
|
* Add support for GFM strikethroughLibravatar Titus Wormer2022-08-2221-112/+169
|
* Refactor to move more things to `util/`Libravatar Titus Wormer2022-08-1915-32/+37
|
* Add support for GFM autolink literalsLibravatar Titus Wormer2022-08-186-75/+407
|
* Add `no_std + alloc`Libravatar Titus Wormer2022-08-169-0/+9
|
* Add support for frontmatterLibravatar Titus Wormer2022-08-166-16/+327
|
* Update some last docs, bnf grammarsLibravatar Titus Wormer2022-08-1617-111/+226
|
* Refactor to proof docs, grammarsLibravatar Titus Wormer2022-08-1521-241/+419
|
* Refactor to move `content` to `construct`Libravatar Titus Wormer2022-08-1532-38/+1037
|
* Refactor to rename list construct to list itemLibravatar Titus Wormer2022-08-154-27/+27
|
* Refactor paragraph, data resolversLibravatar Titus Wormer2022-08-152-44/+50
|
* Refactor to solve some clippy issuesLibravatar Titus Wormer2022-08-151-51/+50
|
* Refactor to attempt less if never neededLibravatar Titus Wormer2022-08-1214-293/+367
|
* Refactor to improve enteringLibravatar Titus Wormer2022-08-129-58/+113
|
* Refactor to improve some namesLibravatar Titus Wormer2022-08-123-15/+15
|
* Remove unneeded stateLibravatar Titus Wormer2022-08-121-21/+4
|
* Remove `match` statements if clumsyLibravatar Titus Wormer2022-08-1218-410/+368
|
* Refactor to improve docs of each functionLibravatar Titus Wormer2022-08-1228-440/+420
|
* Refactor attempts to remove unneeded state nameLibravatar Titus Wormer2022-08-1115-270/+236
|
* Refactor to handle definitions when parsingLibravatar Titus Wormer2022-08-111-3/+34
|
* Remove unneeded `balance` info on label startsLibravatar Titus Wormer2022-08-113-43/+10
|
* Refactor to move `space_or_tab_eol` to own fileLibravatar Titus Wormer2022-08-1128-276/+292
|
* Remove boxes around resolversLibravatar Titus Wormer2022-08-119-16/+22
|
* Refactor to move some code to `event.rs`Libravatar Titus Wormer2022-08-1129-859/+878
|
* Refactor to move some code to `state.rs`Libravatar Titus Wormer2022-08-1128-462/+468
|
* Refactor internal docs, code style of tokenizerLibravatar Titus Wormer2022-08-1112-90/+133
|
* Refactor some code for document parsingLibravatar Titus Wormer2022-08-101-3/+7
|
* Add `State::Retry`Libravatar Titus Wormer2022-08-1021-186/+152
|
* Rename `State::Fn` to `State::Next`Libravatar Titus Wormer2022-08-1027-324/+309
|
* Add support for passing `ok`, `nok` as separate states to attemptsLibravatar Titus Wormer2022-08-0915-168/+265
|
* Rewrite algorithm to not pass around boxed functionsLibravatar Titus Wormer2022-08-0927-688/+795
| | | | | | * 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-0221-990/+979
|
* Fix bug on empty heading (atx)Libravatar Titus Wormer2022-08-011-29/+31
|
* Add missing docs, refactor some codeLibravatar Titus Wormer2022-08-013-8/+21
|
* Refactor some statesLibravatar Titus Wormer2022-08-016-28/+32
|
* Refactor to improve statesLibravatar Titus Wormer2022-07-2923-907/+522
| | | | | | | | | | | | * 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`