diff options
author | Ben Bridle <ben@derelict.engineering> | 2025-02-01 17:48:27 +1300 |
---|---|---|
committer | Ben Bridle <ben@derelict.engineering> | 2025-02-01 17:48:36 +1300 |
commit | 6aa4215cd51a2816fee3d60a844a7148664205b7 (patch) | |
tree | dfcd02cbf254bddfb33a7ae34d079019b2930e4c /Cargo.toml | |
parent | dfd8d985da474bf4e2c080a1de36499eb6e13abb (diff) | |
download | toaster-6aa4215cd51a2816fee3d60a844a7148664205b7.zip |
Support vertical borders in tables
The latest version of the markdown library includes support for a new
vertical-border syntax in tables. When a table has a double-thickness
pipe border between two columns in the markdown, each <th> and <td>
cell in the column on the left side of the border is given the class
'border'.
Diffstat (limited to 'Cargo.toml')
-rw-r--r-- | Cargo.toml | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -5,7 +5,7 @@ edition = "2021" [dependencies] vagabond = { git = "git://benbridle.com/vagabond", tag = "v1.1.0" } -markdown = { git = "git://benbridle.com/markdown", tag = "v3.1.0" } +markdown = { git = "git://benbridle.com/markdown", tag = "v3.2.0" } recipe = { git = "git://benbridle.com/recipe", tag = "v1.4.0" } xflags = "0.4.0-pre.1" |