1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-24 15:19:26 -05:00

fix(fmt/markdown): fix emoji width calculation in tables (#16870)

https://github.com/dprint/dprint-plugin-markdown/pull/67
This commit is contained in:
David Sherret 2022-11-29 19:34:38 -05:00 committed by GitHub
parent e2655c992e
commit 73f8c820f3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 3 deletions

5
Cargo.lock generated
View file

@ -1445,15 +1445,16 @@ dependencies = [
[[package]]
name = "dprint-plugin-markdown"
version = "0.14.2"
version = "0.14.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "49cf3bc0cb9cc526a894b1d5af07c2ce2af1fa56b765990845ec781ab4cd1c91"
checksum = "999e8891976e3b15b519b920db4ac70c6a85f0c6f0e0ddb6ef3b247373e8984d"
dependencies = [
"anyhow",
"dprint-core",
"pulldown-cmark",
"regex",
"serde",
"unicode-width",
]
[[package]]

View file

@ -62,7 +62,7 @@ clap_complete_fig = "=3.1.5"
data-url.workspace = true
dissimilar = "=1.0.4"
dprint-plugin-json = "=0.16.0"
dprint-plugin-markdown = "=0.14.2"
dprint-plugin-markdown = "=0.14.3"
dprint-plugin-typescript = "=0.78.0"
encoding_rs.workspace = true
env_logger = "=0.9.0"