aboutsummaryrefslogtreecommitdiffstats
path: root/src/construct/heading_setext.rs (unfollow)
Commit message (Collapse)AuthorFilesLines
2022-10-29Refactor to always resolve edit mapsLibravatar Titus Wormer1-3/+0
This will probably catch some confusing bugs, such as ad1b3e6.
2022-10-12Refactor to improve some module docsLibravatar Titus Wormer1-1/+1
2022-09-28Add support for turning mdast to hastLibravatar Titus Wormer1-3/+3
2022-09-14Fix to prefer flow over definitions, setext headingsLibravatar Titus Wormer1-36/+101
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-08-31Add support for GFM tablesLibravatar Titus Wormer1-0/+1
2022-08-22Add support for GFM strikethroughLibravatar Titus Wormer1-2/+2
2022-08-19Refactor to move more things to `util/`Libravatar Titus Wormer1-2/+1
2022-08-16Add `no_std + alloc`Libravatar Titus Wormer1-0/+1
2022-08-15Refactor to proof docs, grammarsLibravatar Titus Wormer1-14/+26
2022-08-15Refactor to move `content` to `construct`Libravatar Titus Wormer1-1/+1
2022-08-12Refactor to attempt less if never neededLibravatar Titus Wormer1-15/+21
2022-08-12Remove `match` statements if clumsyLibravatar Titus Wormer1-14/+11
2022-08-12Refactor to improve docs of each functionLibravatar Titus Wormer1-4/+4
2022-08-11Refactor attempts to remove unneeded state nameLibravatar Titus Wormer1-11/+5
2022-08-11Refactor to move `space_or_tab_eol` to own fileLibravatar Titus Wormer1-3/+3
2022-08-11Remove boxes around resolversLibravatar Titus Wormer1-1/+2
2022-08-11Refactor to move some code to `event.rs`Libravatar Titus Wormer1-21/+25
2022-08-11Refactor to move some code to `state.rs`Libravatar Titus Wormer1-10/+7
2022-08-10Add `State::Retry`Libravatar Titus Wormer1-1/+1
2022-08-10Rename `State::Fn` to `State::Next`Libravatar Titus Wormer1-8/+8
2022-08-09Add support for passing `ok`, `nok` as separate states to attemptsLibravatar Titus Wormer1-2/+10
2022-08-09Rewrite algorithm to not pass around boxed functionsLibravatar Titus Wormer1-17/+18
* Pass state names from an enum around instead of boxed functions * Refactor to simplify attempts a lot * Use a subtokenizer for the the `document` content type
2022-08-02Refactor to remove most closuresLibravatar Titus Wormer1-4/+6
2022-07-29Refactor to improve statesLibravatar Titus Wormer1-68/+28
* Remove custom kind wrappers, use plain bytes instead * Remove `Into`s, use the explicit expected types instead * Refactor to use `slice.as_str` in most places * Remove unneeded unique check before adding a definition * Use a shared CDATA prefix in constants * Inline byte checks into matches * Pass bytes back from parser instead of whole parse state * Refactor to work more often on bytes * Rename custom `size` to `len`
2022-07-29Refactor to work on bytes (`u8`)Libravatar Titus Wormer1-15/+15
2022-07-28Refactor to work on `char`sLibravatar Titus Wormer1-4/+4
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.
2022-07-25Refactor to not pass codes aroundLibravatar Titus Wormer1-12/+12
2022-07-25Remove no longer needed field in `State::Ok`Libravatar Titus Wormer1-1/+1
2022-07-25Improve performance w/ a single feed loopLibravatar Titus Wormer1-1/+1
2022-07-22Refactor to use a single shared edit mapLibravatar Titus Wormer1-7/+4
2022-07-22Refactor to remove unneeded tuples in every statesLibravatar Titus Wormer1-12/+12
2022-07-22Refactor to pass ints instead of vecs aroundLibravatar Titus Wormer1-5/+5
2022-07-20Refactor to share edit mapLibravatar Titus Wormer1-5/+5
2022-07-20Refactor to use less vecs for eventsLibravatar Titus Wormer1-3/+3
2022-07-19Refactor to remove cloning in `edit_map`Libravatar Titus Wormer1-1/+1
2022-07-18Add support for turning off constructsLibravatar Titus Wormer1-3/+7
2022-07-18Refactor examples of statesLibravatar Titus Wormer1-20/+19
2022-07-18Fix token that should be voidLibravatar Titus Wormer1-2/+4
2022-07-11Fix block quote bugsLibravatar Titus Wormer1-5/+0
2022-07-07Refactor to move token types to `token`Libravatar Titus Wormer1-16/+17
2022-07-07Add basic support for block quotesLibravatar Titus Wormer1-6/+21
2022-07-05Refactor code styleLibravatar Titus Wormer1-2/+2
2022-07-01Make paragraphs really fastLibravatar Titus Wormer1-166/+67
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.
2022-06-30Refactor some docs, fix some grammarLibravatar Titus Wormer1-2/+4
2022-06-28Fix jumps in `edit_map`Libravatar Titus Wormer1-16/+16
* 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`
2022-06-22Refactor to not use `pub` when not neededLibravatar Titus Wormer1-1/+1
2022-06-22Add `attempt_opt` to tokenizerLibravatar Titus Wormer1-5/+7
2022-06-22Rename `Whitespace` token to `SpaceOrTab`Libravatar Titus Wormer1-2/+2
2022-06-22Add docs for token typesLibravatar Titus Wormer1-0/+6
2022-06-21Add docs for `subtokenize`Libravatar Titus Wormer1-1/+2