mirror of
https://github.com/denoland/deno.git
synced 2025-01-21 21:50:00 -05:00
fix(fmt): markdown formatting should not remove backslashed backslash at start of paragraph (#13429)
This commit is contained in:
parent
f73a5fbc89
commit
1ec07368b4
3 changed files with 6 additions and 6 deletions
|
@ -43,7 +43,7 @@
|
||||||
"plugins": [
|
"plugins": [
|
||||||
"https://plugins.dprint.dev/typescript-0.61.0.wasm",
|
"https://plugins.dprint.dev/typescript-0.61.0.wasm",
|
||||||
"https://plugins.dprint.dev/json-0.14.0.wasm",
|
"https://plugins.dprint.dev/json-0.14.0.wasm",
|
||||||
"https://plugins.dprint.dev/markdown-0.12.0.wasm",
|
"https://plugins.dprint.dev/markdown-0.12.1.wasm",
|
||||||
"https://plugins.dprint.dev/toml-0.5.3.wasm"
|
"https://plugins.dprint.dev/toml-0.5.3.wasm"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|
8
Cargo.lock
generated
8
Cargo.lock
generated
|
@ -1224,9 +1224,9 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "dprint-plugin-markdown"
|
name = "dprint-plugin-markdown"
|
||||||
version = "0.12.0"
|
version = "0.12.1"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "835cf6371fc1474544f70dd28778789bd39474093997fb721c36082b0b4ee316"
|
checksum = "df207f2c04b4b473e30890efdb425cf5b7c15504d2a932c7a6a31402a2ed25fe"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"anyhow",
|
"anyhow",
|
||||||
"dprint-core",
|
"dprint-core",
|
||||||
|
@ -2891,9 +2891,9 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "pulldown-cmark"
|
name = "pulldown-cmark"
|
||||||
version = "0.9.0"
|
version = "0.9.1"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "acd16514d1af5f7a71f909a44ef253cdb712a376d7ebc8ae4a471a9be9743548"
|
checksum = "34f197a544b0c9ab3ae46c359a7ec9cbbb5c7bf97054266fecb7ead794a181d6"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"bitflags",
|
"bitflags",
|
||||||
"memchr",
|
"memchr",
|
||||||
|
|
|
@ -62,7 +62,7 @@ clap_complete_fig = "=3.0.2"
|
||||||
data-url = "=0.1.1"
|
data-url = "=0.1.1"
|
||||||
dissimilar = "=1.0.2"
|
dissimilar = "=1.0.2"
|
||||||
dprint-plugin-json = "=0.14.0"
|
dprint-plugin-json = "=0.14.0"
|
||||||
dprint-plugin-markdown = "=0.12.0"
|
dprint-plugin-markdown = "=0.12.1"
|
||||||
dprint-plugin-typescript = "=0.62.0"
|
dprint-plugin-typescript = "=0.62.0"
|
||||||
encoding_rs = "=0.8.29"
|
encoding_rs = "=0.8.29"
|
||||||
env_logger = "=0.8.4"
|
env_logger = "=0.8.4"
|
||||||
|
|
Loading…
Add table
Reference in a new issue