index
:
markdown-rs
main
CommonMark compliant markdown parser in Rust with ASTs and extensions
cel
about
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
src
/
construct
/
flow.rs
(
unfollow
)
Commit message (
Expand
)
Author
Files
Lines
2022-09-19
Add support for parsing MDX ESM, expressions
Titus Wormer
1
-0
/
+8
2022-09-14
Fix to prefer flow over definitions, setext headings
Titus Wormer
1
-24
/
+9
2022-09-09
Add mdx expression (flow, text)
Titus Wormer
1
-1
/
+23
2022-09-08
Add support for mdx jsx (flow)
Titus Wormer
1
-2
/
+17
2022-08-31
Add support for GFM tables
Titus Wormer
1
-23
/
+18
2022-08-26
Add support for math (flow)
Titus Wormer
1
-12
/
+14
2022-08-16
Add support for frontmatter
Titus Wormer
1
-12
/
+12
2022-08-15
Refactor to move `content` to `construct`
Titus Wormer
1
-0
/
+0
2022-08-12
Refactor to improve docs of each function
Titus Wormer
1
-35
/
+70
2022-08-11
Refactor attempts to remove unneeded state name
Titus Wormer
1
-56
/
+64
2022-08-11
Refactor to move some code to `event.rs`
Titus Wormer
1
-55
/
+55
2022-08-11
Refactor to move some code to `state.rs`
Titus Wormer
1
-50
/
+51
2022-08-10
Add `State::Retry`
Titus Wormer
1
-2
/
+2
2022-08-10
Rename `State::Fn` to `State::Next`
Titus Wormer
1
-32
/
+32
2022-08-09
Add peeking to unindented flow lines
Titus Wormer
1
-11
/
+47
2022-08-09
Add support for passing `ok`, `nok` as separate states to attempts
Titus Wormer
1
-29
/
+68
2022-08-09
Rewrite algorithm to not pass around boxed functions
Titus Wormer
1
-27
/
+30
2022-07-29
Refactor to work on bytes (`u8`)
Titus Wormer
1
-2
/
+2
2022-07-28
Refactor to work on `char`s
Titus Wormer
1
-7
/
+7
2022-07-25
Refactor to not pass codes around
Titus Wormer
1
-14
/
+14
2022-07-25
Remove no longer needed field in `State::Ok`
Titus Wormer
1
-4
/
+4
2022-07-22
Refactor to remove unneeded tuples in every states
Titus Wormer
1
-12
/
+12
2022-07-22
Refactor to pass ints instead of vecs around
Titus Wormer
1
-6
/
+6
2022-07-07
Refactor to move token types to `token`
Titus Wormer
1
-5
/
+6
2022-07-07
Add basic support for block quotes
Titus Wormer
1
-47
/
+2
2022-07-05
Refactor code style
Titus Wormer
1
-2
/
+2
2022-07-04
Add support for unicode punctuation
Titus Wormer
1
-1
/
+1
2022-07-04
Update list of todos
Titus Wormer
1
-1
/
+1
2022-07-01
Make paragraphs really fast
Titus Wormer
1
-22
/
+24
2022-06-29
Add support for sharing identifiers, references before definitions
Titus Wormer
1
-5
/
+7
2022-06-24
Add link, images (resource)
Titus Wormer
1
-6
/
+14
2022-06-22
Add support for normalizing identifiers
Titus Wormer
1
-1
/
+24
2022-06-22
Refactor to improve tokenizer, add docs
Titus Wormer
1
-8
/
+10
2022-06-20
Add some more enabled tests
Titus Wormer
1
-1
/
+0
2022-06-20
Add improved whitespace handling
Titus Wormer
1
-34
/
+11
2022-06-20
Add paragraph
Titus Wormer
1
-130
/
+9
2022-06-20
Remove unneeded `content` content type
Titus Wormer
1
-27
/
+27
2022-06-17
Add support for definitions
Titus Wormer
1
-9
/
+15
2022-06-16
Add heading (setext)
Titus Wormer
1
-11
/
+8
2022-06-14
Reorganize to split util
Titus Wormer
1
-2
/
+2
2022-06-10
Add text content type
Titus Wormer
1
-5
/
+9
2022-06-10
Add proper support for subtokenization
Titus Wormer
1
-19
/
+26
2022-06-09
Add basic subtokenization, string content in fenced code
Titus Wormer
1
-17
/
+6
2022-06-09
Refactor to pass more slices around
Titus Wormer
1
-1
/
+1
2022-06-09
Add support for indented lines in paragraphs
Titus Wormer
1
-23
/
+20
2022-06-09
Add basic support for interrupting content
Titus Wormer
1
-69
/
+95