aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib.rs (unfollow)
Commit message (Collapse)AuthorFilesLines
2022-09-08Add support for mdx jsx (flow)Libravatar Titus Wormer1-0/+9
2022-09-07Add support for recoverable syntax errorsLibravatar Titus Wormer1-29/+74
2022-09-06Add initial states for MDX JSX (text)Libravatar Titus Wormer1-0/+29
2022-09-01Add support for GFM tagfilterLibravatar Titus Wormer1-0/+47
2022-08-31Add support for GFM tablesLibravatar Titus Wormer1-0/+13
2022-08-26Add support for math (flow)Libravatar Titus Wormer1-1/+13
2022-08-26Add support for math (text)Libravatar Titus Wormer1-45/+99
2022-08-25Add support for GFM footnotesLibravatar Titus Wormer1-16/+238
2022-08-22Add support for GFM task list itemLibravatar Titus Wormer1-0/+9
2022-08-22Add support for GFM strikethroughLibravatar Titus Wormer1-1/+60
2022-08-19Refactor to move more things to `util/`Libravatar Titus Wormer1-2/+0
2022-08-18Add support for GFM autolink literalsLibravatar Titus Wormer1-0/+21
2022-08-16Add `no_std + alloc`Libravatar Titus Wormer1-0/+5
2022-08-16Add support for frontmatterLibravatar Titus Wormer1-0/+12
2022-08-15Add derive of `Eq` where possibleLibravatar Titus Wormer1-1/+1
2022-08-15Refactor to move `content` to `construct`Libravatar Titus Wormer1-1/+0
2022-08-15Refactor to rename list construct to list itemLibravatar Titus Wormer1-3/+3
2022-08-12Refactor to improve docs of each functionLibravatar Titus Wormer1-1/+1
2022-08-11Remove boxes around resolversLibravatar Titus Wormer1-0/+1
2022-08-11Refactor to move some code to `event.rs`Libravatar Titus Wormer1-1/+1
2022-08-11Refactor to move some code to `state.rs`Libravatar Titus Wormer1-0/+1
2022-07-29Refactor to improve statesLibravatar Titus Wormer1-2/+2
* 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-29Refactor to work on bytes (`u8`)Libravatar Titus Wormer1-1/+1
2022-07-28Refactor to work on `char`sLibravatar Titus Wormer1-8/+7
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.
2022-07-19Remove unneeded `rust` language flagsLibravatar Titus Wormer1-6/+6
2022-07-18Change to improve `default_line_ending` apiLibravatar Titus Wormer1-4/+4
2022-07-18Add support for turning off constructsLibravatar Titus Wormer1-9/+223
2022-07-18Refactor to move options to `lib/`Libravatar Titus Wormer1-1/+159
2022-07-07Refactor to move token types to `token`Libravatar Titus Wormer1-0/+1
2022-07-05Refactor to do some to dosLibravatar Titus Wormer1-2/+2
2022-07-04Add support for unicode punctuationLibravatar Titus Wormer1-0/+1
2022-06-21Add support for inferring line ending, configurableLibravatar Titus Wormer1-5/+6
* Rename `CompileOptions` to `Options` * Add support for an optional default line ending style * Add support for inferring the used line ending style
2022-06-13Add support for sanitizing urlsLibravatar Titus Wormer1-0/+1
* Add support for properly encoding characters in urls * Add support for sanitizing potentially dangerous urls * Add safe defaults, optionally live dangerously
2022-06-09Add basic subtokenization, string content in fenced codeLibravatar Titus Wormer1-0/+1