Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Fix to prefer flow over definitions, setext headings | 2022-09-14 | 1 | -2/+5 | |
| | | | | | | | | | | | | | | An undocumented part of CommonMark is how to deal with things in definition labels or definition titles (which both can span multiple lines). Can flow (or containers?) interrupt them? They can according to the `cmark` reference parser, so this was implemented here. This adds a new `Content` content type, which houses zero or more definitions, and then zero-or-one paragraphs. Content can be followed by a setext heading underline, which either turns into a setext heading when the content ends in a paragraph, or turns into the start of the following paragraph when it is followed by content that starts with a paragraph, or turns into a stray paragraph. | ||||
* | Add support for GFM autolink literals | 2022-08-18 | 1 | -2/+0 | |
| | |||||
* | Add `no_std + alloc` | 2022-08-16 | 1 | -0/+1 | |
| | |||||
* | Update some last docs, bnf grammars | 2022-08-16 | 1 | -1/+1 | |
| | |||||
* | Refactor to proof docs, grammars | 2022-08-15 | 1 | -1/+1 | |
| | |||||
* | Refactor to move `content` to `construct` | 2022-08-15 | 1 | -2/+2 | |
| | |||||
* | Refactor paragraph, data resolvers | 2022-08-15 | 1 | -16/+13 | |
| | |||||
* | Remove `match` statements if clumsy | 2022-08-12 | 1 | -31/+26 | |
| | |||||
* | Refactor to improve docs of each function | 2022-08-12 | 1 | -4/+3 | |
| | |||||
* | Remove boxes around resolvers | 2022-08-11 | 1 | -2/+3 | |
| | |||||
* | Refactor to move some code to `event.rs` | 2022-08-11 | 1 | -16/+16 | |
| | |||||
* | Refactor to move some code to `state.rs` | 2022-08-11 | 1 | -7/+8 | |
| | |||||
* | Refactor internal docs, code style of tokenizer | 2022-08-11 | 1 | -4/+4 | |
| | |||||
* | Add `State::Retry` | 2022-08-10 | 1 | -3/+3 | |
| | |||||
* | Rename `State::Fn` to `State::Next` | 2022-08-10 | 1 | -3/+3 | |
| | |||||
* | Rewrite algorithm to not pass around boxed functions | 2022-08-09 | 1 | -7/+8 | |
| | | | | | | * 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 closures | 2022-08-02 | 1 | -12/+12 | |
| | |||||
* | Refactor to work on bytes (`u8`) | 2022-07-29 | 1 | -8/+8 | |
| | |||||
* | Refactor to work on `char`s | 2022-07-28 | 1 | -15/+16 | |
| | | | | | | | | | | | | | | | 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 drastically improve perf around whitespace | 2022-07-26 | 1 | -1/+1 | |
| | |||||
* | Refactor to not pass codes around | 2022-07-25 | 1 | -17/+17 | |
| | |||||
* | Remove no longer needed field in `State::Ok` | 2022-07-25 | 1 | -2/+2 | |
| | |||||
* | Improve performance w/ a single feed loop | 2022-07-25 | 1 | -1/+1 | |
| | |||||
* | Refactor to use a single shared edit map | 2022-07-22 | 1 | -6/+4 | |
| | |||||
* | Refactor to remove unneeded tuples in every states | 2022-07-22 | 1 | -9/+9 | |
| | |||||
* | Refactor to pass ints instead of vecs around | 2022-07-22 | 1 | -5/+5 | |
| | |||||
* | Refactor to improve performance by passing markers around | 2022-07-21 | 1 | -6/+6 | |
| | |||||
* | Refactor to move `index` field to `point` | 2022-07-21 | 1 | -5/+1 | |
| | |||||
* | Refactor to share edit map | 2022-07-20 | 1 | -4/+4 | |
| | |||||
* | Refactor to use less vecs for events | 2022-07-20 | 1 | -3/+3 | |
| | |||||
* | Refactor to remove cloning in `edit_map` | 2022-07-19 | 1 | -1/+1 | |
| | |||||
* | Refactor to organize resolvers | 2022-07-18 | 1 | -2/+2 | |
| | |||||
* | Refactor examples of states | 2022-07-18 | 1 | -3/+6 | |
| | |||||
* | Refactor to move token types to `token` | 2022-07-07 | 1 | -8/+9 | |
| | |||||
* | Refactor code style | 2022-07-05 | 1 | -4/+2 | |
| | |||||
* | Add support for trimming whitespace around string, text | 2022-06-30 | 1 | -2/+49 | |
| | | | | | | | | | | | | | This commit introduces trimming initial and final whitespace around the whole string or text, or around line endings inside that string or text. * Add `register_resolver_before`, to run resolvers earlier than others, used for labels * Add resolver to merge `data` events, which are the most frequent token that occurs, and can happen adjacently. In `micromark-js` this sped up parsing a lot * Fix a bug where a virtual space was not seen as an okay event * Refactor to enable all turned off whitespace tests | ||||
* | Make data a construct | 2022-06-21 | 1 | -0/+69 | |