diff options
author | David Sherret <dsherret@users.noreply.github.com> | 2024-04-29 14:29:00 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-04-29 20:29:00 +0200 |
commit | e6f4c8f5310fbdb969eecd5613047059f714d517 (patch) | |
tree | 858fbbfb2e369ac50d75870fe15d5f3171aee6f1 | |
parent | 48daf2dc88c2ec340af37a176fd9351010b38929 (diff) |
fix(fmt/md): better handling of lists in block quotes (#23604)
* https://github.com/dprint/dprint-plugin-markdown/pull/94
-rw-r--r-- | .dprint.json | 2 | ||||
-rw-r--r-- | Cargo.lock | 4 | ||||
-rw-r--r-- | cli/Cargo.toml | 2 |
3 files changed, 4 insertions, 4 deletions
diff --git a/.dprint.json b/.dprint.json index a6a030557..4e32c747b 100644 --- a/.dprint.json +++ b/.dprint.json @@ -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" ] diff --git a/Cargo.lock b/Cargo.lock index d70b3266f..3b8e4a715 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -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", diff --git a/cli/Cargo.toml b/cli/Cargo.toml index dba61e18e..8559c3bbc 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -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" |