diff options
author | David Sherret <dsherret@users.noreply.github.com> | 2024-08-26 14:36:24 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-08-26 18:36:24 +0000 |
commit | 631d931973fbb7d2e01e1aeb87a33dd9d63ec38e (patch) | |
tree | 8cfa3fc0a4980e21db2541969628661f3bab4bb8 /cli | |
parent | a8ce02473add1a9bb7ddc0ff55767a620a3dc9e1 (diff) |
fix(fmt/markdown): fix regression with multi-line footnotes and inline math (#25222)
What happened in this specific case was the parser used to actually
treat these as code block. Now it treats it as a multi-paragraph
footnote and that caused the issue
- https://github.com/dprint/dprint-plugin-markdown/pull/121/files
Diffstat (limited to 'cli')
-rw-r--r-- | cli/Cargo.toml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/Cargo.toml b/cli/Cargo.toml index 6034145a6..8eeef8cb3 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -102,7 +102,7 @@ dissimilar = "=1.0.4" dotenvy = "0.15.7" dprint-plugin-json = "=0.19.3" dprint-plugin-jupyter = "=0.1.3" -dprint-plugin-markdown = "=0.17.6" +dprint-plugin-markdown = "=0.17.8" dprint-plugin-typescript = "=0.91.6" env_logger = "=0.10.0" fancy-regex = "=0.10.0" |