Commit message (Collapse) | Author | Files | Lines | ||
---|---|---|---|---|---|
2022-09-14 | Fix to prefer flow over definitions, setext headings | 1 | -1/+1 | ||
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. | |||||
2022-09-12 | Add fuzz testing | 1 | -0/+5 | ||
Closes GH-7. | |||||
2022-09-09 | Add section on syntax errors to readme | 1 | -0/+8 | ||
2022-09-09 | Update count in readme | 1 | -1/+1 | ||
2022-09-09 | Fix typo | 1 | -1/+1 | ||
2022-09-09 | Refactor list ordering in readme | 1 | -1/+1 | ||
2022-09-09 | Fix typo | 1 | -1/+1 | ||
2022-09-09 | Add some numbers to readme | 1 | -1/+1 | ||
2022-09-09 | Add example of syntax highlighting to readme | 1 | -0/+94 | ||
2022-09-09 | Add MDX extensions to readme | 1 | -2/+8 | ||
2022-09-08 | Update test count in readme | 1 | -1/+1 | ||
2022-09-08 | Fix example in readme | 1 | -2/+4 | ||
2022-09-05 | Update docs for extensions | 1 | -14/+11 | ||
2022-09-01 | Add support for GFM tagfilter | 1 | -3/+3 | ||
2022-08-31 | Update `readme.md` | 1 | -2/+2 | ||
2022-08-26 | Add support for math (flow) | 1 | -1/+1 | ||
2022-08-26 | Add support for math (text) | 1 | -1/+1 | ||
2022-08-25 | Add support for GFM footnotes | 1 | -1/+1 | ||
2022-08-22 | Add support for GFM task list item | 1 | -1/+1 | ||
2022-08-22 | Add support for GFM strikethrough | 1 | -1/+1 | ||
2022-08-19 | Refactor to move more things to `util/` | 1 | -4/+0 | ||
2022-08-19 | Add contents | 1 | -4/+10 | ||
2022-08-19 | Add contributing, support guide | 1 | -5/+4 | ||
2022-08-19 | Refactor to clean some scripts in readme | 1 | -2/+2 | ||
2022-08-19 | Add discussions | 1 | -4/+4 | ||
2022-08-19 | Add some docs | 1 | -85/+332 | ||
2022-08-19 | Add logo to readme | 1 | -0/+2 | ||
2022-08-18 | Add support for GFM autolink literals | 1 | -1/+1 | ||
2022-08-16 | Add a small intro to the readme | 1 | -2/+8 | ||
2022-08-16 | Add `no_std + alloc` | 1 | -1/+0 | ||
2022-08-16 | Add cargo clippy rules | 1 | -2/+1 | ||
2022-08-16 | Add support for frontmatter | 1 | -6/+1 | ||
2022-08-16 | Update some last docs, bnf grammars | 1 | -2/+0 | ||
2022-08-15 | Refactor to allow wrong clippy rule | 1 | -1/+1 | ||
2022-08-15 | Refactor to move `content` to `construct` | 1 | -1/+0 | ||
2022-08-12 | Refactor to improve docs of each function | 1 | -1/+0 | ||
2022-08-11 | Refactor `readme.md` | 1 | -143/+49 | ||
2022-07-19 | Use `edit_map` in `subtokenize` | 1 | -3/+4 | ||
2022-07-19 | Replace use of `HashSet` with `vec` | 1 | -1/+1 | ||
2022-07-18 | Add support for turning off constructs | 1 | -4/+3 | ||
2022-07-15 | Update todos | 1 | -2/+4 | ||
2022-07-15 | Update todos | 1 | -66/+2 | ||
2022-07-11 | Add support for lazy lines | 1 | -3/+1 | ||
2022-07-11 | Fix block quote bugs | 1 | -1/+1 | ||
2022-07-11 | Update todo list | 1 | -1/+1 | ||
2022-07-11 | Add tests for matching identifiers w/ turkish `i` | 1 | -2/+1 | ||
2022-07-08 | Add support for concrete constructs | 1 | -4/+3 | ||
2022-07-07 | Refactor to use `char::REPLACEMENT_CHARACTER` | 1 | -1/+1 | ||
2022-07-07 | Add basic support for block quotes | 1 | -7/+6 | ||
2022-07-05 | Fix interleaving of attention/label | 1 | -1/+1 | ||