diff options
| author | Ben Bridle <bridle.benjamin@gmail.com> | 2026-01-30 19:18:57 +1300 |
|---|---|---|
| committer | Ben Bridle <bridle.benjamin@gmail.com> | 2026-01-30 19:18:57 +1300 |
| commit | 95abaa4e376a63ddb46a598daec162692f7be4e8 (patch) | |
| tree | e37df7b8f7d28547dbd748df96f020667118161a | |
| parent | dd0aff0b170a71ef2962fcd38b710c581d90f9da (diff) | |
| download | toaster-95abaa4e376a63ddb46a598daec162692f7be4e8.zip | |
Update markdown dependency
This fixes an issue where tables that contain line elements that
themselves contain characters that are valid delimiters for another
line element were not being recognised as tables.
| -rw-r--r-- | Cargo.lock | 4 | ||||
| -rw-r--r-- | Cargo.toml | 2 |
2 files changed, 3 insertions, 3 deletions
@@ -68,8 +68,8 @@ dependencies = [ [[package]] name = "markdown" -version = "3.3.1" -source = "git+git://benbridle.com/markdown?tag=v3.3.1#2bff486208df17cae8498f602f81c6e2024a1a11" +version = "3.3.2" +source = "git+git://benbridle.com/markdown?tag=v3.3.2#e8d8a1146de5e297dda3dd6264a02f9d6938c3e1" [[package]] name = "memchr" @@ -5,7 +5,7 @@ edition = "2021" [dependencies] vagabond = { git = "git://benbridle.com/vagabond", tag = "v1.1.1" } -markdown = { git = "git://benbridle.com/markdown", tag = "v3.3.1" } +markdown = { git = "git://benbridle.com/markdown", tag = "v3.3.2" } recipe = { git = "git://benbridle.com/recipe", tag = "v1.4.0" } log = { git = "git://benbridle.com/log", tag = "v2.0.0" } switchboard = { git = "git://benbridle.com/switchboard", tag = "v1.0.0" } |
