Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Add support for GFM tagfilter | Titus Wormer | 2022-09-01 | 1 | -0/+1 |
| | |||||
* | Refactor to move more things to `util/` | Titus Wormer | 2022-08-19 | 1 | -0/+2 |
| | |||||
* | Add support for GFM autolink literals | Titus Wormer | 2022-08-18 | 1 | -0/+1 |
| | |||||
* | Refactor to proof docs, grammars | Titus Wormer | 2022-08-15 | 1 | -1/+1 |
| | |||||
* | Refactor to work on `char`s | Titus Wormer | 2022-07-28 | 1 | -2/+1 |
| | | | | | | | | | | | | | | | 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. | ||||
* | Add basic support for block quotes | Titus Wormer | 2022-07-07 | 1 | -0/+1 |
| | |||||
* | Refactor code style | Titus Wormer | 2022-07-05 | 1 | -0/+1 |
| | |||||
* | Fix jumps in `edit_map` | Titus Wormer | 2022-06-28 | 1 | -0/+1 |
| | | | | | | | | | * Use resolve more often (e.g., heading (atx, setext)) * Fix to link whole phrasing (e.g., one big chunk of text in heading (atx, setext), titles, labels) * Replace `ChunkText`, `ChunkString`, with `event.content_type: Option<ContentType>` * Refactor to externalize `edit_map` from `label` | ||||
* | Add support for normalizing identifiers | Titus Wormer | 2022-06-22 | 1 | -0/+1 |
| | |||||
* | Add docs for `subtokenize` | Titus Wormer | 2022-06-21 | 1 | -1/+0 |
| | |||||
* | Add support for line endings in string | Titus Wormer | 2022-06-20 | 1 | -0/+1 |
| | |||||
* | Reorganize to split util | Titus Wormer | 2022-06-14 | 1 | -0/+6 |