Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Fix to prefer flow over definitions, setext headings | 2022-09-14 | 15 | -211/+436 | |
| | | | | | | | | | | | | | | 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. | ||||
* | Fix containers piercing into indented code | 2022-09-12 | 1 | -1/+1 | |
| | |||||
* | Fix gfm email autolink literals overlapping | 2022-09-12 | 1 | -13/+13 | |
| | |||||
* | Fix blank lines in labels | 2022-09-12 | 1 | -1/+2 | |
| | |||||
* | Fix whitespace in GFM footnote definition identifiers | 2022-09-12 | 2 | -19/+106 | |
| | | | | | | * Fix a crash on line endings in footnote definitions * Fix to match spaces and tabs in identifiers to `cmark-gfm` * Fix order of one attribute | ||||
* | Add docs for mdx expressions | 2022-09-09 | 3 | -12/+152 | |
| | |||||
* | Add support for mdx attribute (value) expressions | 2022-09-09 | 2 | -10/+70 | |
| | |||||
* | Add mdx expression (flow, text) | 2022-09-09 | 7 | -4/+242 | |
| | |||||
* | Add some missing docs | 2022-09-09 | 1 | -14/+9 | |
| | |||||
* | Fix to allow blank lines in mdx jsx (flow) | 2022-09-09 | 1 | -44/+22 | |
| | |||||
* | Refactor to move byte, char info to own file | 2022-09-09 | 4 | -79/+55 | |
| | |||||
* | Add docs to mdx jsx | 2022-09-09 | 3 | -4/+355 | |
| | |||||
* | Add support for mdx jsx (flow) | 2022-09-08 | 4 | -74/+143 | |
| | |||||
* | Refactor to move jsx parsing to partial | 2022-09-08 | 3 | -945/+954 | |
| | |||||
* | Add tests for mdx jsx (text) | 2022-09-08 | 1 | -11/+36 | |
| | |||||
* | Add support for recoverable syntax errors | 2022-09-07 | 2 | -53/+56 | |
| | |||||
* | Add support for unicode identifiers in JSX | 2022-09-07 | 1 | -24/+95 | |
| | |||||
* | Add initial states for MDX JSX (text) | 2022-09-06 | 4 | -47/+911 | |
| | |||||
* | Add support for `mailto:`, `xmpp:` protocols | 2022-09-05 | 2 | -12/+54 | |
| | |||||
* | Fix some todos | 2022-09-05 | 3 | -6/+5 | |
| | |||||
* | Fix to implement GFM autolink literals exactly | 2022-09-05 | 3 | -158/+712 | |
| | |||||
* | Add support for getting `char`s from bytes | 2022-09-05 | 1 | -21/+10 | |
| | |||||
* | Add support for GFM tagfilter | 2022-09-01 | 2 | -2/+2 | |
| | |||||
* | Add support for GFM tables | 2022-08-31 | 8 | -29/+1077 | |
| | |||||
* | Add support for math (flow) | 2022-08-26 | 6 | -106/+205 | |
| | |||||
* | Add support for math (text) | 2022-08-26 | 8 | -239/+301 | |
| | |||||
* | Add support for GFM footnotes | 2022-08-25 | 11 | -104/+717 | |
| | |||||
* | Fix lazy paragraph after definition | 2022-08-22 | 2 | -10/+60 | |
| | |||||
* | Add support for GFM task list item | 2022-08-22 | 3 | -1/+167 | |
| | |||||
* | Add support for GFM strikethrough | 2022-08-22 | 21 | -112/+169 | |
| | |||||
* | Refactor to move more things to `util/` | 2022-08-19 | 15 | -32/+37 | |
| | |||||
* | Add support for GFM autolink literals | 2022-08-18 | 6 | -75/+407 | |
| | |||||
* | Add `no_std + alloc` | 2022-08-16 | 9 | -0/+9 | |
| | |||||
* | Add support for frontmatter | 2022-08-16 | 6 | -16/+327 | |
| | |||||
* | Update some last docs, bnf grammars | 2022-08-16 | 17 | -111/+226 | |
| | |||||
* | Refactor to proof docs, grammars | 2022-08-15 | 21 | -241/+419 | |
| | |||||
* | Refactor to move `content` to `construct` | 2022-08-15 | 32 | -38/+1037 | |
| | |||||
* | Refactor to rename list construct to list item | 2022-08-15 | 4 | -27/+27 | |
| | |||||
* | Refactor paragraph, data resolvers | 2022-08-15 | 2 | -44/+50 | |
| | |||||
* | Refactor to solve some clippy issues | 2022-08-15 | 1 | -51/+50 | |
| | |||||
* | Refactor to attempt less if never needed | 2022-08-12 | 14 | -293/+367 | |
| | |||||
* | Refactor to improve entering | 2022-08-12 | 9 | -58/+113 | |
| | |||||
* | Refactor to improve some names | 2022-08-12 | 3 | -15/+15 | |
| | |||||
* | Remove unneeded state | 2022-08-12 | 1 | -21/+4 | |
| | |||||
* | Remove `match` statements if clumsy | 2022-08-12 | 18 | -410/+368 | |
| | |||||
* | Refactor to improve docs of each function | 2022-08-12 | 28 | -440/+420 | |
| | |||||
* | Refactor attempts to remove unneeded state name | 2022-08-11 | 15 | -270/+236 | |
| | |||||
* | Refactor to handle definitions when parsing | 2022-08-11 | 1 | -3/+34 | |
| | |||||
* | Remove unneeded `balance` info on label starts | 2022-08-11 | 3 | -43/+10 | |
| | |||||
* | Refactor to move `space_or_tab_eol` to own file | 2022-08-11 | 28 | -276/+292 | |
| |