Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | Add clippy allow for wrong rule in actions | 2022-09-14 | 1 | -1/+1 | ||
| | ||||||
* | Fix to prefer flow over definitions, setext headings | 2022-09-14 | 26 | -355/+724 | ||
| | | | | | | | | | | | | | | 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 | 3 | -4/+16 | ||
| | ||||||
* | Fix gfm email autolink literals overlapping | 2022-09-12 | 3 | -16/+31 | ||
| | ||||||
* | Fix blank lines in labels | 2022-09-12 | 2 | -1/+16 | ||
| | ||||||
* | Fix whitespace in GFM footnote definition identifiers | 2022-09-12 | 6 | -142/+303 | ||
| | | | | | | * 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 fuzz testing | 2022-09-12 | 4 | -0/+49 | ||
| | | | Closes GH-7. | |||||
* | Add section on syntax errors to readme | 2022-09-09 | 1 | -0/+8 | ||
| | ||||||
* | Update count in readme | 2022-09-09 | 1 | -1/+1 | ||
| | ||||||
* | Fix typo | 2022-09-09 | 1 | -1/+1 | ||
| | ||||||
* | Refactor list ordering in readme | 2022-09-09 | 1 | -1/+1 | ||
| | ||||||
* | Fix typo | 2022-09-09 | 1 | -1/+1 | ||
| | ||||||
* | Add some numbers to readme | 2022-09-09 | 1 | -1/+1 | ||
| | ||||||
* | Add example of syntax highlighting to readme | 2022-09-09 | 1 | -0/+94 | ||
| | ||||||
* | Add MDX extensions to readme | 2022-09-09 | 1 | -2/+8 | ||
| | ||||||
* | Add mdx example | 2022-09-09 | 1 | -0/+14 | ||
| | ||||||
* | Add docs for mdx expressions | 2022-09-09 | 5 | -31/+294 | ||
| | ||||||
* | Add support for mdx attribute (value) expressions | 2022-09-09 | 6 | -180/+248 | ||
| | ||||||
* | Add mdx expression (flow, text) | 2022-09-09 | 14 | -17/+818 | ||
| | ||||||
* | Add some missing docs | 2022-09-09 | 1 | -14/+9 | ||
| | ||||||
* | Fix to allow blank lines in mdx jsx (flow) | 2022-09-09 | 2 | -50/+22 | ||
| | ||||||
* | Refactor to move byte, char info to own file | 2022-09-09 | 9 | -215/+225 | ||
| | ||||||
* | Add docs to mdx jsx | 2022-09-09 | 3 | -4/+355 | ||
| | ||||||
* | Refactor to order states | 2022-09-08 | 1 | -197/+194 | ||
| | ||||||
* | Add docs to mdx jsx events | 2022-09-08 | 1 | -24/+437 | ||
| | ||||||
* | Add support for mdx jsx (flow) | 2022-09-08 | 10 | -95/+373 | ||
| | ||||||
* | Refactor to move jsx parsing to partial | 2022-09-08 | 4 | -1001/+1014 | ||
| | ||||||
* | Update test count in readme | 2022-09-08 | 1 | -1/+1 | ||
| | ||||||
* | Fix example in readme | 2022-09-08 | 1 | -2/+4 | ||
| | ||||||
* | Add tests for mdx jsx (text) | 2022-09-08 | 4 | -15/+867 | ||
| | ||||||
* | Fix debug message | 2022-09-07 | 1 | -1/+1 | ||
| | ||||||
* | Add support for recoverable syntax errors | 2022-09-07 | 49 | -1388/+1550 | ||
| | ||||||
* | Add support for unicode identifiers in JSX | 2022-09-07 | 2 | -24/+97 | ||
| | ||||||
* | Add initial states for MDX JSX (text) | 2022-09-06 | 8 | -48/+1050 | ||
| | ||||||
* | Update docs for extensions | 2022-09-05 | 1 | -14/+11 | ||
| | ||||||
* | Add support for `mailto:`, `xmpp:` protocols | 2022-09-05 | 5 | -16/+167 | ||
| | ||||||
* | Fix some todos | 2022-09-05 | 5 | -7/+12 | ||
| | ||||||
* | Fix to implement GFM autolink literals exactly | 2022-09-05 | 6 | -164/+3245 | ||
| | ||||||
* | Add support for getting `char`s from bytes | 2022-09-05 | 2 | -21/+32 | ||
| | ||||||
* | Fix shifting points past tabs | 2022-09-05 | 1 | -9/+10 | ||
| | ||||||
* | Fix to improve debug logging | 2022-09-05 | 1 | -2/+16 | ||
| | ||||||
* | Add support for GFM tagfilter | 2022-09-01 | 11 | -80/+371 | ||
| | ||||||
* | Update example | 2022-08-31 | 1 | -2/+1 | ||
| | ||||||
* | Update `readme.md` | 2022-08-31 | 1 | -2/+2 | ||
| | ||||||
* | Add support for GFM tables | 2022-08-31 | 16 | -36/+3442 | ||
| | ||||||
* | Add support for math (flow) | 2022-08-26 | 15 | -221/+699 | ||
| | ||||||
* | Add support for math (text) | 2022-08-26 | 14 | -313/+682 | ||
| | ||||||
* | Add support for GFM footnotes | 2022-08-25 | 19 | -148/+3058 | ||
| | ||||||
* | Fix lazy paragraph after definition | 2022-08-22 | 6 | -13/+93 | ||
| | ||||||
* | Add support for GFM task list item | 2022-08-22 | 13 | -13/+578 | ||
| |