mirror of
https://github.com/denoland/deno.git
synced 2024-11-24 15:19:26 -05:00
fix(fmt/md): better handling of lists in block quotes (#23604)
* https://github.com/dprint/dprint-plugin-markdown/pull/94
This commit is contained in:
parent
48daf2dc88
commit
e6f4c8f531
3 changed files with 4 additions and 4 deletions
|
@ -59,7 +59,7 @@
|
|||
"plugins": [
|
||||
"https://plugins.dprint.dev/typescript-0.90.4.wasm",
|
||||
"https://plugins.dprint.dev/json-0.19.2.wasm",
|
||||
"https://plugins.dprint.dev/markdown-0.16.4.wasm",
|
||||
"https://plugins.dprint.dev/markdown-0.17.0.wasm",
|
||||
"https://plugins.dprint.dev/toml-0.6.1.wasm",
|
||||
"https://plugins.dprint.dev/exec-0.4.4.json@c207bf9b9a4ee1f0ecb75c594f774924baf62e8e53a2ce9d873816a408cecbf7"
|
||||
]
|
||||
|
|
4
Cargo.lock
generated
4
Cargo.lock
generated
|
@ -2278,9 +2278,9 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "dprint-plugin-markdown"
|
||||
version = "0.16.4"
|
||||
version = "0.17.0"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "e9153b4bd411eea99ed14afa19b7aede250594d96a6ebeee3130b18b575a9ac7"
|
||||
checksum = "2b2642e4a5f3a2262bb9baef8739f90d99b73ca21bc65f46c320a7817fd65438"
|
||||
dependencies = [
|
||||
"anyhow",
|
||||
"dprint-core",
|
||||
|
|
|
@ -98,7 +98,7 @@ dissimilar = "=1.0.4"
|
|||
dotenvy = "0.15.7"
|
||||
dprint-plugin-json = "=0.19.2"
|
||||
dprint-plugin-jupyter = "=0.1.3"
|
||||
dprint-plugin-markdown = "=0.16.4"
|
||||
dprint-plugin-markdown = "=0.17.0"
|
||||
dprint-plugin-typescript = "=0.90.4"
|
||||
env_logger = "=0.10.0"
|
||||
fancy-regex = "=0.10.0"
|
||||
|
|
Loading…
Reference in a new issue