mirror of
https://github.com/denoland/deno.git
synced 2024-12-21 23:04:45 -05:00
fix(fmt/markdown): scenario where whitespace was being incorrectly stripped in inline links (#16769)
https://github.com/dprint/dprint-plugin-markdown/pull/69 Closes #16730
This commit is contained in:
parent
13e3acf71d
commit
f2330fcd9b
3 changed files with 10 additions and 10 deletions
|
@ -48,10 +48,10 @@
|
|||
"tools/wpt/manifest.json"
|
||||
],
|
||||
"plugins": [
|
||||
"https://plugins.dprint.dev/typescript-0.76.0.wasm",
|
||||
"https://plugins.dprint.dev/json-0.15.6.wasm",
|
||||
"https://plugins.dprint.dev/markdown-0.14.1.wasm",
|
||||
"https://plugins.dprint.dev/typescript-0.78.0.wasm",
|
||||
"https://plugins.dprint.dev/json-0.16.0.wasm",
|
||||
"https://plugins.dprint.dev/markdown-0.14.2.wasm",
|
||||
"https://plugins.dprint.dev/toml-0.5.4.wasm",
|
||||
"https://plugins.dprint.dev/exec-0.3.1.json@9351b67ec7a6b58a69201c2834cba38cb3d191080aefc6422fb1320f03c8fc4d"
|
||||
"https://plugins.dprint.dev/exec-0.3.2.json@8efbbb3fcfbdf84142c3c438fbdeaf1637152a020032127c837b2b14e23261c3"
|
||||
]
|
||||
}
|
||||
|
|
8
Cargo.lock
generated
8
Cargo.lock
generated
|
@ -1433,9 +1433,9 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "dprint-plugin-json"
|
||||
version = "0.15.6"
|
||||
version = "0.16.0"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "f7b6ffd969606d66570c259fea202ae6ba15f8e13ae285c8de604a07131ca1c8"
|
||||
checksum = "447c6f9ceae26cafa063a53b59710735576ade0c17dee4603a59ee18b5dbcdff"
|
||||
dependencies = [
|
||||
"anyhow",
|
||||
"dprint-core",
|
||||
|
@ -1446,9 +1446,9 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "dprint-plugin-markdown"
|
||||
version = "0.14.1"
|
||||
version = "0.14.2"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "9d1219016fc87c5dbd1dda4560831ea92da8a1a2df612e62843e741c98b668c3"
|
||||
checksum = "49cf3bc0cb9cc526a894b1d5af07c2ce2af1fa56b765990845ec781ab4cd1c91"
|
||||
dependencies = [
|
||||
"anyhow",
|
||||
"dprint-core",
|
||||
|
|
|
@ -61,8 +61,8 @@ clap_complete = "=3.1.2"
|
|||
clap_complete_fig = "=3.1.5"
|
||||
data-url.workspace = true
|
||||
dissimilar = "=1.0.4"
|
||||
dprint-plugin-json = "=0.15.6"
|
||||
dprint-plugin-markdown = "=0.14.1"
|
||||
dprint-plugin-json = "=0.16.0"
|
||||
dprint-plugin-markdown = "=0.14.2"
|
||||
dprint-plugin-typescript = "=0.78.0"
|
||||
encoding_rs.workspace = true
|
||||
env_logger = "=0.9.0"
|
||||
|
|
Loading…
Reference in a new issue