aboutsummaryrefslogtreecommitdiffstats
path: root/readme.md (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
* Add support for frontmatterLibravatar Titus Wormer2022-08-161-6/+1
|
* Update some last docs, bnf grammarsLibravatar Titus Wormer2022-08-161-2/+0
|
* Refactor to allow wrong clippy ruleLibravatar Titus Wormer2022-08-151-1/+1
|
* Refactor to move `content` to `construct`Libravatar Titus Wormer2022-08-151-1/+0
|
* Refactor to improve docs of each functionLibravatar Titus Wormer2022-08-121-1/+0
|
* Refactor `readme.md`Libravatar Titus Wormer2022-08-111-143/+49
|
* Use `edit_map` in `subtokenize`Libravatar Titus Wormer2022-07-191-3/+4
|
* Replace use of `HashSet` with `vec`Libravatar Titus Wormer2022-07-191-1/+1
|
* Add support for turning off constructsLibravatar Titus Wormer2022-07-181-4/+3
|
* Update todosLibravatar Titus Wormer2022-07-151-2/+4
|
* Update todosLibravatar Titus Wormer2022-07-151-66/+2
|
* Add support for lazy linesLibravatar Titus Wormer2022-07-111-3/+1
|
* Fix block quote bugsLibravatar Titus Wormer2022-07-111-1/+1
|
* Update todo listLibravatar Titus Wormer2022-07-111-1/+1
|
* Add tests for matching identifiers w/ turkish `i`Libravatar Titus Wormer2022-07-111-2/+1
|
* Add support for concrete constructsLibravatar Titus Wormer2022-07-081-4/+3
|
* Refactor to use `char::REPLACEMENT_CHARACTER`Libravatar Titus Wormer2022-07-071-1/+1
|
* Add basic support for block quotesLibravatar Titus Wormer2022-07-071-7/+6
|
* Fix interleaving of attention/labelLibravatar Titus Wormer2022-07-051-1/+1
|
* Fix resizing attention bugLibravatar Titus Wormer2022-07-051-1/+1
|
* Refactor code styleLibravatar Titus Wormer2022-07-051-1/+1
|
* Add docs to attentionLibravatar Titus Wormer2022-07-051-1/+1
|
* Use Rust to crawl unicodeLibravatar Titus Wormer2022-07-041-1/+1
|
* Add support for unicode punctuationLibravatar Titus Wormer2022-07-041-1/+2
|
* Update list of todosLibravatar Titus Wormer2022-07-041-2/+4
|
* Add support for attention (emphasis, strong)Libravatar Titus Wormer2022-07-041-6/+8
|
* Make paragraphs really fastLibravatar Titus Wormer2022-07-011-6/+3
| | | | | | | | | | | | | | | | | | The approach that `micromark-js` takes is as follows: to parse a paragraph, check whether each line starts with something else. If it does, exit, otherwise continue. That is slow, because our actual flow parser does similar things: the work was being done twice. To fix this, this commit introduces parsing each line of a paragraph separately. And finally, when done with flow, combining adjacent paragraphs. This same mechanism is reused for setext headings. Additionally, this commit adds support for interrupting things (or not). E.g., HTML (flow, complete) cannot interrupt paragraphs. Definitions cannot interrupt paragraphs, and connect be interrupted either, but they can follow each other.
* Update todosLibravatar Titus Wormer2022-07-011-6/+5
|
* Refactor to clean and document `edit_map`Libravatar Titus Wormer2022-07-011-2/+1
|
* Refactor to clean and document `space_or_tab`Libravatar Titus Wormer2022-07-011-4/+2
|
* Add support for trimming whitespace around string, textLibravatar Titus Wormer2022-06-301-4/+1
| | | | | | | | | | | | | 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
* Update todosLibravatar Titus Wormer2022-06-301-9/+8
|
* Add docs on resolver, clean feedLibravatar Titus Wormer2022-06-301-2/+1
|
* Add docs to image, link, and other media tokensLibravatar Titus Wormer2022-06-301-1/+1
|
* Fix a bunch of bugs with definitions, referencesLibravatar Titus Wormer2022-06-291-3/+3
| | | | | | | | | * Fix bug where whitespace after `:` was not allowed, it is * Fix bug where escapes in labels did not work due to typo * Fix to prefer first definition * Fix whitespace after definitions * Fix matching by adding normalizing * Fix reference from being output as data
* Add support for compiling definitionsLibravatar Titus Wormer2022-06-291-2/+1
|
* Refactor to externalize handlers of compilerLibravatar Titus Wormer2022-06-291-2/+2
|
* Add support for sharing identifiers, references before definitionsLibravatar Titus Wormer2022-06-291-0/+2
|
* Add some more crosslinks to docsLibravatar Titus Wormer2022-06-281-5/+2
|
* Add docs to label endLibravatar Titus Wormer2022-06-281-2/+3
|
* Add docs for label start (image, link)Libravatar Titus Wormer2022-06-281-1/+1
|
* Add docs for `RESOURCE_DESTINATION_BALANCE_MAX`Libravatar Titus Wormer2022-06-281-1/+1
|
* Add improved docs in compilerLibravatar Titus Wormer2022-06-281-1/+1
|
* Add link, images (resource)Libravatar Titus Wormer2022-06-241-8/+25
| | | | | | | | | | | | This is still some messy code that needs cleaning up, but it adds support for links and images, of the resource kind (`[a](b)`). References (`[a][b]`) are parsed and will soon be supported, but need matching. * Fix bug to pad percent-encoded bytes when normalizing urls * Fix bug with escapes counting as balancing in destination * Add `space_or_tab_one_line_ending`, to parse whitespace including up to one line ending (but not a blank line) * Add `ParserState` to share codes, definitions, etc
* Reorganize todo listLibravatar Titus Wormer2022-06-221-91/+90
|
* Update todoLibravatar Titus Wormer2022-06-221-1/+1
|
* Add docs on normalizing identifiers, matchingLibravatar Titus Wormer2022-06-221-2/+2
|
* Add support for normalizing identifiersLibravatar Titus Wormer2022-06-221-2/+3
|
* Add docs on encoding to definition, destinationLibravatar Titus Wormer2022-06-221-1/+1
|
* Rename `Whitespace` token to `SpaceOrTab`Libravatar Titus Wormer2022-06-221-1/+1
|