mirror of
https://github.com/denoland/deno.git
synced 2024-11-24 15:19:26 -05:00
fix(fmt): markdown formatting was incorrectly removing some non-breaking space html entities (#12818)
This commit is contained in:
parent
22dcf82230
commit
ddfba7d8ca
3 changed files with 10 additions and 10 deletions
|
@ -36,9 +36,9 @@
|
|||
"tools/wpt/manifest.json"
|
||||
],
|
||||
"plugins": [
|
||||
"https://plugins.dprint.dev/typescript-0.59.0.wasm",
|
||||
"https://plugins.dprint.dev/json-0.13.1.wasm",
|
||||
"https://plugins.dprint.dev/markdown-0.11.1.wasm",
|
||||
"https://plugins.dprint.dev/toml-0.5.2.wasm"
|
||||
"https://plugins.dprint.dev/typescript-0.59.2.wasm",
|
||||
"https://plugins.dprint.dev/json-0.13.2.wasm",
|
||||
"https://plugins.dprint.dev/markdown-0.11.3.wasm",
|
||||
"https://plugins.dprint.dev/toml-0.5.3.wasm"
|
||||
]
|
||||
}
|
||||
|
|
8
Cargo.lock
generated
8
Cargo.lock
generated
|
@ -1120,9 +1120,9 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "dprint-plugin-markdown"
|
||||
version = "0.11.2"
|
||||
version = "0.11.3"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "438806cf4483652c45f81d05666fd66906f215aa3347cfe8bd0a4f640cc41442"
|
||||
checksum = "9b28f3f469ccd62d6e93fec9926dae032b8e8e05ffc20217c05e80b27ed372e3"
|
||||
dependencies = [
|
||||
"dprint-core",
|
||||
"pulldown-cmark",
|
||||
|
@ -1132,9 +1132,9 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "dprint-plugin-typescript"
|
||||
version = "0.59.1"
|
||||
version = "0.59.2"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "d31e6e48fb130f8baeaf8efc6fb9820012b4f5a281860c84b7a9375bf0c7fd11"
|
||||
checksum = "c7eb0e9b299253bcdef030e1df70ee820b13faebee9175b35d78de0bc99c1c9a"
|
||||
dependencies = [
|
||||
"deno_ast",
|
||||
"dprint-core",
|
||||
|
|
|
@ -53,8 +53,8 @@ clap = "2.33.3"
|
|||
data-url = "0.1.0"
|
||||
dissimilar = "1.0.2"
|
||||
dprint-plugin-json = "0.13.2"
|
||||
dprint-plugin-markdown = "0.11.2"
|
||||
dprint-plugin-typescript = "0.59.1"
|
||||
dprint-plugin-markdown = "0.11.3"
|
||||
dprint-plugin-typescript = "0.59.2"
|
||||
encoding_rs = "0.8.29"
|
||||
env_logger = "0.8.4"
|
||||
fancy-regex = "0.7.1"
|
||||
|
|
Loading…
Reference in a new issue