Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Fix attention starting and ending in different links | 2022-10-29 | 1 | -11/+12 | |
| | | | | | | | | | | | | | | | | | | | | | | Example: ```markdown [*]() [*]() ``` There was already code for: ```markdown [*]() x*. *x [*](). ``` But that wasn’t correct for attention at the same depth but in different places. Closes GH-21. Co-authored-by: Christian Murphy <christian.murphy.42@gmail.com> | ||||
* | Remove some unused code around slices | 2022-10-14 | 1 | -9/+4 | |
| | |||||
* | Add some missing internal docs | 2022-10-11 | 1 | -1/+1 | |
| | |||||
* | Add support for turning mdast to hast | 2022-09-28 | 1 | -3/+2 | |
| | |||||
* | Fix to prefer flow over definitions, setext headings | 2022-09-14 | 1 | -1/+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. | ||||
* | Refactor to move byte, char info to own file | 2022-09-09 | 1 | -2/+7 | |
| | |||||
* | Add support for getting `char`s from bytes | 2022-09-05 | 1 | -21/+10 | |
| | |||||
* | Add support for GFM strikethrough | 2022-08-22 | 1 | -81/+125 | |
| | |||||
* | Add support for GFM autolink literals | 2022-08-18 | 1 | -67/+3 | |
| | |||||
* | Add `no_std + alloc` | 2022-08-16 | 1 | -0/+1 | |
| | |||||
* | Refactor to proof docs, grammars | 2022-08-15 | 1 | -12/+19 | |
| | |||||
* | Refactor to move `content` to `construct` | 2022-08-15 | 1 | -1/+1 | |
| | |||||
* | Remove `match` statements if clumsy | 2022-08-12 | 1 | -24/+29 | |
| | |||||
* | Refactor to improve docs of each function | 2022-08-12 | 1 | -205/+183 | |
| | |||||
* | Refactor to move `space_or_tab_eol` to own file | 2022-08-11 | 1 | -7/+7 | |
| | |||||
* | Remove boxes around resolvers | 2022-08-11 | 1 | -2/+3 | |
| | |||||
* | Refactor to move some code to `event.rs` | 2022-08-11 | 1 | -43/+43 | |
| | |||||
* | Refactor to move some code to `state.rs` | 2022-08-11 | 1 | -3/+4 | |
| | |||||
* | Add `State::Retry` | 2022-08-10 | 1 | -1/+1 | |
| | |||||
* | Rename `State::Fn` to `State::Next` | 2022-08-10 | 1 | -1/+1 | |
| | |||||
* | Rewrite algorithm to not pass around boxed functions | 2022-08-09 | 1 | -3/+3 | |
| | | | | | | * 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 | -4/+6 | |
| | |||||
* | Refactor to improve states | 2022-07-29 | 1 | -67/+21 | |
| | | | | | | | | | | | | * 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`) | 2022-07-29 | 1 | -27/+39 | |
| | |||||
* | Refactor to work on `char`s | 2022-07-28 | 1 | -42/+33 | |
| | | | | | | | | | | | | | | | 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 around | 2022-07-25 | 1 | -7/+7 | |
| | |||||
* | Remove no longer needed field in `State::Ok` | 2022-07-25 | 1 | -1/+1 | |
| | |||||
* | 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 | -8/+6 | |
| | |||||
* | Refactor to remove unneeded tuples in every states | 2022-07-22 | 1 | -7/+7 | |
| | |||||
* | Refactor to pass ints instead of vecs around | 2022-07-22 | 1 | -3/+3 | |
| | |||||
* | Refactor to move `index` field to `point` | 2022-07-21 | 1 | -44/+22 | |
| | |||||
* | Refactor to move some event fields to `link` | 2022-07-21 | 1 | -24/+8 | |
| | |||||
* | Refactor to share edit map | 2022-07-20 | 1 | -7/+7 | |
| | |||||
* | Refactor to use less vecs for events | 2022-07-20 | 1 | -2/+2 | |
| | |||||
* | Refactor to remove cloning in `edit_map` | 2022-07-19 | 1 | -1/+1 | |
| | |||||
* | Add support for turning off constructs | 2022-07-18 | 1 | -1/+1 | |
| | |||||
* | Refactor to organize resolvers | 2022-07-18 | 1 | -2/+2 | |
| | |||||
* | Refactor examples of states | 2022-07-18 | 1 | -2/+4 | |
| | |||||
* | Refactor to move token types to `token` | 2022-07-07 | 1 | -29/+30 | |
| | |||||
* | Remove debugging from attention | 2022-07-07 | 1 | -41/+1 | |
| | |||||
* | Fix misnested attention | 2022-07-05 | 1 | -0/+19 | |
| | |||||
* | Fix interleaving of attention/label | 2022-07-05 | 1 | -44/+54 | |
| | |||||
* | Fix resizing attention bug | 2022-07-05 | 1 | -1/+2 | |
| | |||||
* | Refactor code style | 2022-07-05 | 1 | -4/+20 | |
| | |||||
* | Add docs to attention | 2022-07-05 | 1 | -66/+180 | |
| | |||||
* | Add support for unicode punctuation | 2022-07-04 | 1 | -4/+2 | |
| | |||||
* | Fix opening/closing tag order of nested attention | 2022-07-04 | 1 | -1/+1 | |
| | |||||
* | Fix some attention bugs | 2022-07-04 | 1 | -4/+33 | |
| | | | | | | * Fix closing many attention from one closer * Fix nested attention * Fix remaining attention markers | ||||
* | Add support for attention (emphasis, strong) | 2022-07-04 | 1 | -0/+401 | |