panache-cli 3.3.0__tar.gz → 3.4.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (323) hide show
  1. {panache_cli-3.3.0 → panache_cli-3.4.0}/Cargo.lock +73 -72
  2. {panache_cli-3.3.0 → panache_cli-3.4.0}/Cargo.toml +7 -3
  3. {panache_cli-3.3.0 → panache_cli-3.4.0}/PKG-INFO +4 -4
  4. {panache_cli-3.3.0 → panache_cli-3.4.0}/README.md +3 -3
  5. {panache_cli-3.3.0 → panache_cli-3.4.0}/crates/panache-formatter/CHANGELOG.md +42 -0
  6. {panache_cli-3.3.0 → panache_cli-3.4.0}/crates/panache-formatter/Cargo.toml +3 -2
  7. {panache_cli-3.3.0 → panache_cli-3.4.0}/crates/panache-formatter/src/formatter/code_blocks.rs +18 -11
  8. {panache_cli-3.3.0 → panache_cli-3.4.0}/crates/panache-formatter/src/formatter/core.rs +498 -250
  9. {panache_cli-3.3.0 → panache_cli-3.4.0}/crates/panache-formatter/src/formatter/inline.rs +34 -98
  10. {panache_cli-3.3.0 → panache_cli-3.4.0}/crates/panache-formatter/src/formatter/inline_layout.rs +24 -63
  11. {panache_cli-3.3.0 → panache_cli-3.4.0}/crates/panache-formatter/src/formatter/lists.rs +126 -51
  12. {panache_cli-3.3.0 → panache_cli-3.4.0}/crates/panache-formatter/src/formatter/math/STYLE.md +29 -19
  13. {panache_cli-3.3.0 → panache_cli-3.4.0}/crates/panache-formatter/src/formatter/math/linebreak.rs +115 -24
  14. {panache_cli-3.3.0 → panache_cli-3.4.0}/crates/panache-formatter/src/formatter/math/operators.rs +36 -0
  15. {panache_cli-3.3.0 → panache_cli-3.4.0}/crates/panache-formatter/src/formatter/math/render.rs +34 -3
  16. {panache_cli-3.3.0 → panache_cli-3.4.0}/crates/panache-formatter/src/formatter/math.rs +27 -0
  17. {panache_cli-3.3.0 → panache_cli-3.4.0}/crates/panache-formatter/src/formatter/tables.rs +313 -130
  18. {panache_cli-3.3.0 → panache_cli-3.4.0}/crates/panache-formatter/src/utils.rs +5 -2
  19. {panache_cli-3.3.0 → panache_cli-3.4.0}/crates/panache-parser/CHANGELOG.md +83 -0
  20. {panache_cli-3.3.0 → panache_cli-3.4.0}/crates/panache-parser/Cargo.toml +2 -1
  21. {panache_cli-3.3.0 → panache_cli-3.4.0}/crates/panache-parser/src/grid_layout.rs +105 -4
  22. {panache_cli-3.3.0 → panache_cli-3.4.0}/crates/panache-parser/src/options.rs +27 -3
  23. {panache_cli-3.3.0 → panache_cli-3.4.0}/crates/panache-parser/src/pandoc_ast.rs +322 -543
  24. {panache_cli-3.3.0 → panache_cli-3.4.0}/crates/panache-parser/src/parser/block_dispatcher.rs +211 -80
  25. {panache_cli-3.3.0 → panache_cli-3.4.0}/crates/panache-parser/src/parser/blocks/blockquotes.rs +41 -4
  26. {panache_cli-3.3.0 → panache_cli-3.4.0}/crates/panache-parser/src/parser/blocks/code_blocks.rs +69 -35
  27. panache_cli-3.4.0/crates/panache-parser/src/parser/blocks/container_prefix.rs +2684 -0
  28. panache_cli-3.4.0/crates/panache-parser/src/parser/blocks/definition_lists.rs +396 -0
  29. {panache_cli-3.3.0 → panache_cli-3.4.0}/crates/panache-parser/src/parser/blocks/headings.rs +0 -16
  30. {panache_cli-3.3.0 → panache_cli-3.4.0}/crates/panache-parser/src/parser/blocks/html_blocks.rs +44 -207
  31. {panache_cli-3.3.0 → panache_cli-3.4.0}/crates/panache-parser/src/parser/blocks/indented_code.rs +3 -3
  32. {panache_cli-3.3.0 → panache_cli-3.4.0}/crates/panache-parser/src/parser/blocks/line_blocks.rs +7 -5
  33. {panache_cli-3.3.0 → panache_cli-3.4.0}/crates/panache-parser/src/parser/blocks/lists.rs +320 -34
  34. {panache_cli-3.3.0 → panache_cli-3.4.0}/crates/panache-parser/src/parser/blocks/reference_links.rs +73 -0
  35. {panache_cli-3.3.0 → panache_cli-3.4.0}/crates/panache-parser/src/parser/blocks/tables.rs +928 -130
  36. {panache_cli-3.3.0 → panache_cli-3.4.0}/crates/panache-parser/src/parser/blocks/tests/blockquotes.rs +469 -11
  37. {panache_cli-3.3.0 → panache_cli-3.4.0}/crates/panache-parser/src/parser/blocks/tests/code_blocks.rs +114 -0
  38. {panache_cli-3.3.0 → panache_cli-3.4.0}/crates/panache-parser/src/parser/blocks/tests/content_containers.rs +3 -3
  39. panache_cli-3.4.0/crates/panache-parser/src/parser/blocks/tests/definition_lists.rs +1140 -0
  40. panache_cli-3.4.0/crates/panache-parser/src/parser/blocks/tests/footnote_marker_line.rs +163 -0
  41. panache_cli-3.4.0/crates/panache-parser/src/parser/blocks/tests/frame_pinning.rs +1166 -0
  42. {panache_cli-3.3.0 → panache_cli-3.4.0}/crates/panache-parser/src/parser/blocks/tests/helpers.rs +15 -1
  43. {panache_cli-3.3.0 → panache_cli-3.4.0}/crates/panache-parser/src/parser/blocks/tests/lists.rs +299 -2
  44. {panache_cli-3.3.0 → panache_cli-3.4.0}/crates/panache-parser/src/parser/blocks/tests/losslessness.rs +76 -4
  45. panache_cli-3.4.0/crates/panache-parser/src/parser/blocks/tests/tables.rs +2267 -0
  46. {panache_cli-3.3.0 → panache_cli-3.4.0}/crates/panache-parser/src/parser/blocks.rs +4 -0
  47. {panache_cli-3.3.0 → panache_cli-3.4.0}/crates/panache-parser/src/parser/core.rs +1613 -296
  48. {panache_cli-3.3.0 → panache_cli-3.4.0}/crates/panache-parser/src/parser/inlines/code_spans.rs +29 -0
  49. {panache_cli-3.3.0 → panache_cli-3.4.0}/crates/panache-parser/src/parser/inlines/sink.rs +8 -6
  50. {panache_cli-3.3.0 → panache_cli-3.4.0}/crates/panache-parser/src/parser/math.rs +8 -2
  51. panache_cli-3.4.0/crates/panache-parser/src/parser/reparse.rs +2041 -0
  52. {panache_cli-3.3.0 → panache_cli-3.4.0}/crates/panache-parser/src/parser/utils/attributes.rs +149 -5
  53. {panache_cli-3.3.0 → panache_cli-3.4.0}/crates/panache-parser/src/parser/utils/container_stack.rs +139 -0
  54. {panache_cli-3.3.0 → panache_cli-3.4.0}/crates/panache-parser/src/parser/utils/continuation.rs +93 -13
  55. {panache_cli-3.3.0 → panache_cli-3.4.0}/crates/panache-parser/src/parser/utils/list_item_buffer.rs +476 -96
  56. {panache_cli-3.3.0 → panache_cli-3.4.0}/crates/panache-parser/src/parser/utils/text_buffer.rs +11 -2
  57. panache_cli-3.4.0/crates/panache-parser/src/parser/verify.rs +150 -0
  58. panache_cli-3.4.0/crates/panache-parser/src/parser.rs +123 -0
  59. {panache_cli-3.3.0 → panache_cli-3.4.0}/crates/panache-parser/src/syntax/attributes.rs +14 -2
  60. panache_cli-3.4.0/crates/panache-parser/src/syntax/code_span.rs +222 -0
  61. {panache_cli-3.3.0 → panache_cli-3.4.0}/crates/panache-parser/src/syntax/definitions.rs +7 -0
  62. {panache_cli-3.3.0 → panache_cli-3.4.0}/crates/panache-parser/src/syntax/kind.rs +25 -9
  63. {panache_cli-3.3.0 → panache_cli-3.4.0}/crates/panache-parser/src/syntax/math.rs +4 -4
  64. panache_cli-3.4.0/crates/panache-parser/src/syntax/tables.rs +486 -0
  65. {panache_cli-3.3.0 → panache_cli-3.4.0}/crates/panache-parser/src/syntax.rs +2 -0
  66. {panache_cli-3.3.0 → panache_cli-3.4.0}/src/bib/csl_yaml.rs +76 -1
  67. {panache_cli-3.3.0 → panache_cli-3.4.0}/src/cli.rs +7 -3
  68. {panache_cli-3.3.0 → panache_cli-3.4.0}/src/config.rs +22 -0
  69. panache_cli-3.4.0/src/diagnostic_renderer.rs +393 -0
  70. panache_cli-3.4.0/src/incremental.rs +338 -0
  71. {panache_cli-3.3.0 → panache_cli-3.4.0}/src/lib.rs +1 -0
  72. {panache_cli-3.3.0 → panache_cli-3.4.0}/src/linter/code_block_collector.rs +88 -0
  73. {panache_cli-3.3.0 → panache_cli-3.4.0}/src/linter/external_linters/clippy.rs +9 -13
  74. {panache_cli-3.3.0 → panache_cli-3.4.0}/src/linter/external_linters/eslint.rs +16 -20
  75. {panache_cli-3.3.0 → panache_cli-3.4.0}/src/linter/external_linters/jarl.rs +15 -23
  76. {panache_cli-3.3.0 → panache_cli-3.4.0}/src/linter/external_linters/jolars.rs +18 -9
  77. {panache_cli-3.3.0 → panache_cli-3.4.0}/src/linter/external_linters/ruff.rs +11 -17
  78. {panache_cli-3.3.0 → panache_cli-3.4.0}/src/linter/external_linters/shellcheck.rs +8 -10
  79. {panache_cli-3.3.0 → panache_cli-3.4.0}/src/linter/external_linters/staticcheck.rs +7 -8
  80. {panache_cli-3.3.0 → panache_cli-3.4.0}/src/linter/external_linters.rs +223 -2
  81. {panache_cli-3.3.0 → panache_cli-3.4.0}/src/linter/rules/swallowed_list_marker.rs +1 -1
  82. panache_cli-3.4.0/src/linter/rules/table_column_count.rs +145 -0
  83. {panache_cli-3.3.0 → panache_cli-3.4.0}/src/linter/rules.rs +1 -0
  84. {panache_cli-3.3.0 → panache_cli-3.4.0}/src/linter.rs +1 -0
  85. {panache_cli-3.3.0 → panache_cli-3.4.0}/src/lsp/context.rs +5 -1
  86. {panache_cli-3.3.0 → panache_cli-3.4.0}/src/lsp/conversions.rs +0 -25
  87. {panache_cli-3.3.0 → panache_cli-3.4.0}/src/lsp/dispatch.rs +23 -5
  88. {panache_cli-3.3.0 → panache_cli-3.4.0}/src/lsp/documents.rs +53 -212
  89. {panache_cli-3.3.0 → panache_cli-3.4.0}/src/lsp/global_state.rs +0 -9
  90. {panache_cli-3.3.0 → panache_cli-3.4.0}/src/lsp/handlers/completion.rs +2 -1
  91. {panache_cli-3.3.0 → panache_cli-3.4.0}/src/lsp/handlers/configuration.rs +21 -1
  92. {panache_cli-3.3.0 → panache_cli-3.4.0}/src/lsp/handlers/workspace_symbols.rs +5 -3
  93. {panache_cli-3.3.0 → panache_cli-3.4.0}/src/lsp/testing.rs +9 -4
  94. {panache_cli-3.3.0 → panache_cli-3.4.0}/src/lsp.rs +0 -3
  95. {panache_cli-3.3.0 → panache_cli-3.4.0}/src/main.rs +174 -31
  96. {panache_cli-3.3.0 → panache_cli-3.4.0}/src/parser.rs +20 -35
  97. {panache_cli-3.3.0 → panache_cli-3.4.0}/src/range_utils.rs +0 -19
  98. {panache_cli-3.3.0 → panache_cli-3.4.0}/src/salsa.rs +207 -10
  99. {panache_cli-3.3.0 → panache_cli-3.4.0}/src/utils.rs +51 -3
  100. panache_cli-3.3.0/crates/panache-parser/src/parser/blocks/container_prefix.rs +0 -1515
  101. panache_cli-3.3.0/crates/panache-parser/src/parser/blocks/definition_lists.rs +0 -227
  102. panache_cli-3.3.0/crates/panache-parser/src/parser/blocks/tests/definition_lists.rs +0 -343
  103. panache_cli-3.3.0/crates/panache-parser/src/parser/blocks/tests/tables.rs +0 -140
  104. panache_cli-3.3.0/crates/panache-parser/src/parser.rs +0 -767
  105. panache_cli-3.3.0/crates/panache-parser/src/syntax/tables.rs +0 -296
  106. panache_cli-3.3.0/src/diagnostic_renderer.rs +0 -224
  107. {panache_cli-3.3.0 → panache_cli-3.4.0}/LICENSE +0 -0
  108. {panache_cli-3.3.0 → panache_cli-3.4.0}/assets/quarto-schema/schema.json +0 -0
  109. {panache_cli-3.3.0 → panache_cli-3.4.0}/build.rs +0 -0
  110. {panache_cli-3.3.0 → panache_cli-3.4.0}/crates/panache-formatter/README.md +0 -0
  111. {panache_cli-3.3.0 → panache_cli-3.4.0}/crates/panache-formatter/src/config.rs +0 -0
  112. {panache_cli-3.3.0 → panache_cli-3.4.0}/crates/panache-formatter/src/directives.rs +0 -0
  113. {panache_cli-3.3.0 → panache_cli-3.4.0}/crates/panache-formatter/src/formatter/blockquotes.rs +0 -0
  114. {panache_cli-3.3.0 → panache_cli-3.4.0}/crates/panache-formatter/src/formatter/fenced_divs.rs +0 -0
  115. {panache_cli-3.3.0 → panache_cli-3.4.0}/crates/panache-formatter/src/formatter/hashpipe.rs +0 -0
  116. {panache_cli-3.3.0 → panache_cli-3.4.0}/crates/panache-formatter/src/formatter/headings.rs +0 -0
  117. {panache_cli-3.3.0 → panache_cli-3.4.0}/crates/panache-formatter/src/formatter/indent_utils.rs +0 -0
  118. {panache_cli-3.3.0 → panache_cli-3.4.0}/crates/panache-formatter/src/formatter/metadata.rs +0 -0
  119. {panache_cli-3.3.0 → panache_cli-3.4.0}/crates/panache-formatter/src/formatter/paragraphs.rs +0 -0
  120. {panache_cli-3.3.0 → panache_cli-3.4.0}/crates/panache-formatter/src/formatter/sentence_wrap.rs +0 -0
  121. {panache_cli-3.3.0 → panache_cli-3.4.0}/crates/panache-formatter/src/formatter/shortcodes.rs +0 -0
  122. {panache_cli-3.3.0 → panache_cli-3.4.0}/crates/panache-formatter/src/formatter/smart.rs +0 -0
  123. {panache_cli-3.3.0 → panache_cli-3.4.0}/crates/panache-formatter/src/formatter/utils.rs +0 -0
  124. {panache_cli-3.3.0 → panache_cli-3.4.0}/crates/panache-formatter/src/formatter/yaml/STYLE.md +0 -0
  125. {panache_cli-3.3.0 → panache_cli-3.4.0}/crates/panache-formatter/src/formatter/yaml/block_map.rs +0 -0
  126. {panache_cli-3.3.0 → panache_cli-3.4.0}/crates/panache-formatter/src/formatter/yaml/block_sequence.rs +0 -0
  127. {panache_cli-3.3.0 → panache_cli-3.4.0}/crates/panache-formatter/src/formatter/yaml/document.rs +0 -0
  128. {panache_cli-3.3.0 → panache_cli-3.4.0}/crates/panache-formatter/src/formatter/yaml/flow.rs +0 -0
  129. {panache_cli-3.3.0 → panache_cli-3.4.0}/crates/panache-formatter/src/formatter/yaml/options.rs +0 -0
  130. {panache_cli-3.3.0 → panache_cli-3.4.0}/crates/panache-formatter/src/formatter/yaml/scalar.rs +0 -0
  131. {panache_cli-3.3.0 → panache_cli-3.4.0}/crates/panache-formatter/src/formatter/yaml.rs +0 -0
  132. {panache_cli-3.3.0 → panache_cli-3.4.0}/crates/panache-formatter/src/formatter.rs +0 -0
  133. {panache_cli-3.3.0 → panache_cli-3.4.0}/crates/panache-formatter/src/lib.rs +0 -0
  134. {panache_cli-3.3.0 → panache_cli-3.4.0}/crates/panache-formatter/src/parser.rs +0 -0
  135. {panache_cli-3.3.0 → panache_cli-3.4.0}/crates/panache-formatter/src/syntax.rs +0 -0
  136. {panache_cli-3.3.0 → panache_cli-3.4.0}/crates/panache-formatter/src/yaml_engine.rs +0 -0
  137. {panache_cli-3.3.0 → panache_cli-3.4.0}/crates/panache-parser/README.md +0 -0
  138. {panache_cli-3.3.0 → panache_cli-3.4.0}/crates/panache-parser/build.rs +0 -0
  139. {panache_cli-3.3.0 → panache_cli-3.4.0}/crates/panache-parser/src/lib.rs +0 -0
  140. {panache_cli-3.3.0 → panache_cli-3.4.0}/crates/panache-parser/src/parser/blocks/admonitions.rs +0 -0
  141. {panache_cli-3.3.0 → panache_cli-3.4.0}/crates/panache-parser/src/parser/blocks/fenced_divs.rs +0 -0
  142. {panache_cli-3.3.0 → panache_cli-3.4.0}/crates/panache-parser/src/parser/blocks/figures.rs +0 -0
  143. {panache_cli-3.3.0 → panache_cli-3.4.0}/crates/panache-parser/src/parser/blocks/horizontal_rules.rs +0 -0
  144. {panache_cli-3.3.0 → panache_cli-3.4.0}/crates/panache-parser/src/parser/blocks/latex_envs.rs +0 -0
  145. {panache_cli-3.3.0 → panache_cli-3.4.0}/crates/panache-parser/src/parser/blocks/metadata.rs +0 -0
  146. {panache_cli-3.3.0 → panache_cli-3.4.0}/crates/panache-parser/src/parser/blocks/myst_directives.rs +0 -0
  147. {panache_cli-3.3.0 → panache_cli-3.4.0}/crates/panache-parser/src/parser/blocks/myst_targets.rs +0 -0
  148. {panache_cli-3.3.0 → panache_cli-3.4.0}/crates/panache-parser/src/parser/blocks/paragraphs.rs +0 -0
  149. {panache_cli-3.3.0 → panache_cli-3.4.0}/crates/panache-parser/src/parser/blocks/raw_blocks.rs +0 -0
  150. {panache_cli-3.3.0 → panache_cli-3.4.0}/crates/panache-parser/src/parser/blocks/tests/blanklines.rs +0 -0
  151. {panache_cli-3.3.0 → panache_cli-3.4.0}/crates/panache-parser/src/parser/blocks/tests/figures.rs +0 -0
  152. {panache_cli-3.3.0 → panache_cli-3.4.0}/crates/panache-parser/src/parser/blocks/tests/headings.rs +0 -0
  153. {panache_cli-3.3.0 → panache_cli-3.4.0}/crates/panache-parser/src/parser/blocks/tests/metadata_guards.rs +0 -0
  154. {panache_cli-3.3.0 → panache_cli-3.4.0}/crates/panache-parser/src/parser/diagnostics.rs +0 -0
  155. {panache_cli-3.3.0 → panache_cli-3.4.0}/crates/panache-parser/src/parser/inlines/bookdown.rs +0 -0
  156. {panache_cli-3.3.0 → panache_cli-3.4.0}/crates/panache-parser/src/parser/inlines/bracketed_spans.rs +0 -0
  157. {panache_cli-3.3.0 → panache_cli-3.4.0}/crates/panache-parser/src/parser/inlines/citations.rs +0 -0
  158. {panache_cli-3.3.0 → panache_cli-3.4.0}/crates/panache-parser/src/parser/inlines/core.rs +0 -0
  159. {panache_cli-3.3.0 → panache_cli-3.4.0}/crates/panache-parser/src/parser/inlines/emoji.rs +0 -0
  160. {panache_cli-3.3.0 → panache_cli-3.4.0}/crates/panache-parser/src/parser/inlines/escapes.rs +0 -0
  161. {panache_cli-3.3.0 → panache_cli-3.4.0}/crates/panache-parser/src/parser/inlines/inline_executable.rs +0 -0
  162. {panache_cli-3.3.0 → panache_cli-3.4.0}/crates/panache-parser/src/parser/inlines/inline_footnotes.rs +0 -0
  163. {panache_cli-3.3.0 → panache_cli-3.4.0}/crates/panache-parser/src/parser/inlines/inline_html.rs +0 -0
  164. {panache_cli-3.3.0 → panache_cli-3.4.0}/crates/panache-parser/src/parser/inlines/inline_ir.rs +0 -0
  165. {panache_cli-3.3.0 → panache_cli-3.4.0}/crates/panache-parser/src/parser/inlines/latex.rs +0 -0
  166. {panache_cli-3.3.0 → panache_cli-3.4.0}/crates/panache-parser/src/parser/inlines/links.rs +0 -0
  167. {panache_cli-3.3.0 → panache_cli-3.4.0}/crates/panache-parser/src/parser/inlines/mark.rs +0 -0
  168. {panache_cli-3.3.0 → panache_cli-3.4.0}/crates/panache-parser/src/parser/inlines/math.rs +0 -0
  169. {panache_cli-3.3.0 → panache_cli-3.4.0}/crates/panache-parser/src/parser/inlines/myst_roles.rs +0 -0
  170. {panache_cli-3.3.0 → panache_cli-3.4.0}/crates/panache-parser/src/parser/inlines/myst_substitutions.rs +0 -0
  171. {panache_cli-3.3.0 → panache_cli-3.4.0}/crates/panache-parser/src/parser/inlines/native_spans.rs +0 -0
  172. {panache_cli-3.3.0 → panache_cli-3.4.0}/crates/panache-parser/src/parser/inlines/raw_inline.rs +0 -0
  173. {panache_cli-3.3.0 → panache_cli-3.4.0}/crates/panache-parser/src/parser/inlines/refdef_map.rs +0 -0
  174. {panache_cli-3.3.0 → panache_cli-3.4.0}/crates/panache-parser/src/parser/inlines/shortcodes.rs +0 -0
  175. {panache_cli-3.3.0 → panache_cli-3.4.0}/crates/panache-parser/src/parser/inlines/strikeout.rs +0 -0
  176. {panache_cli-3.3.0 → panache_cli-3.4.0}/crates/panache-parser/src/parser/inlines/subscript.rs +0 -0
  177. {panache_cli-3.3.0 → panache_cli-3.4.0}/crates/panache-parser/src/parser/inlines/superscript.rs +0 -0
  178. {panache_cli-3.3.0 → panache_cli-3.4.0}/crates/panache-parser/src/parser/inlines/svelte.rs +0 -0
  179. {panache_cli-3.3.0 → panache_cli-3.4.0}/crates/panache-parser/src/parser/inlines/tests.rs +0 -0
  180. {panache_cli-3.3.0 → panache_cli-3.4.0}/crates/panache-parser/src/parser/inlines/uri-schemes.csv +0 -0
  181. {panache_cli-3.3.0 → panache_cli-3.4.0}/crates/panache-parser/src/parser/inlines/wikilinks.rs +0 -0
  182. {panache_cli-3.3.0 → panache_cli-3.4.0}/crates/panache-parser/src/parser/inlines.rs +0 -0
  183. {panache_cli-3.3.0 → panache_cli-3.4.0}/crates/panache-parser/src/parser/utils/chunk_options.rs +0 -0
  184. {panache_cli-3.3.0 → panache_cli-3.4.0}/crates/panache-parser/src/parser/utils/helpers.rs +0 -0
  185. {panache_cli-3.3.0 → panache_cli-3.4.0}/crates/panache-parser/src/parser/utils/inline_emission.rs +0 -0
  186. {panache_cli-3.3.0 → panache_cli-3.4.0}/crates/panache-parser/src/parser/utils/marker_utils.rs +0 -0
  187. {panache_cli-3.3.0 → panache_cli-3.4.0}/crates/panache-parser/src/parser/utils/tree_copy.rs +0 -0
  188. {panache_cli-3.3.0 → panache_cli-3.4.0}/crates/panache-parser/src/parser/utils/yaml_regions.rs +0 -0
  189. {panache_cli-3.3.0 → panache_cli-3.4.0}/crates/panache-parser/src/parser/utils.rs +0 -0
  190. {panache_cli-3.3.0 → panache_cli-3.4.0}/crates/panache-parser/src/parser/yaml/cooking.rs +0 -0
  191. {panache_cli-3.3.0 → panache_cli-3.4.0}/crates/panache-parser/src/parser/yaml/events.rs +0 -0
  192. {panache_cli-3.3.0 → panache_cli-3.4.0}/crates/panache-parser/src/parser/yaml/model.rs +0 -0
  193. {panache_cli-3.3.0 → panache_cli-3.4.0}/crates/panache-parser/src/parser/yaml/parser.rs +0 -0
  194. {panache_cli-3.3.0 → panache_cli-3.4.0}/crates/panache-parser/src/parser/yaml/profile.rs +0 -0
  195. {panache_cli-3.3.0 → panache_cli-3.4.0}/crates/panache-parser/src/parser/yaml/scanner.rs +0 -0
  196. {panache_cli-3.3.0 → panache_cli-3.4.0}/crates/panache-parser/src/parser/yaml/validator.rs +0 -0
  197. {panache_cli-3.3.0 → panache_cli-3.4.0}/crates/panache-parser/src/parser/yaml.rs +0 -0
  198. {panache_cli-3.3.0 → panache_cli-3.4.0}/crates/panache-parser/src/range_utils.rs +0 -0
  199. {panache_cli-3.3.0 → panache_cli-3.4.0}/crates/panache-parser/src/syntax/alerts.rs +0 -0
  200. {panache_cli-3.3.0 → panache_cli-3.4.0}/crates/panache-parser/src/syntax/ast.rs +0 -0
  201. {panache_cli-3.3.0 → panache_cli-3.4.0}/crates/panache-parser/src/syntax/block_quotes.rs +0 -0
  202. {panache_cli-3.3.0 → panache_cli-3.4.0}/crates/panache-parser/src/syntax/blocks.rs +0 -0
  203. {panache_cli-3.3.0 → panache_cli-3.4.0}/crates/panache-parser/src/syntax/chunk_options.rs +0 -0
  204. {panache_cli-3.3.0 → panache_cli-3.4.0}/crates/panache-parser/src/syntax/citations.rs +0 -0
  205. {panache_cli-3.3.0 → panache_cli-3.4.0}/crates/panache-parser/src/syntax/code_blocks.rs +0 -0
  206. {panache_cli-3.3.0 → panache_cli-3.4.0}/crates/panache-parser/src/syntax/crossrefs.rs +0 -0
  207. {panache_cli-3.3.0 → panache_cli-3.4.0}/crates/panache-parser/src/syntax/fenced_divs.rs +0 -0
  208. {panache_cli-3.3.0 → panache_cli-3.4.0}/crates/panache-parser/src/syntax/headings.rs +0 -0
  209. {panache_cli-3.3.0 → panache_cli-3.4.0}/crates/panache-parser/src/syntax/inlines.rs +0 -0
  210. {panache_cli-3.3.0 → panache_cli-3.4.0}/crates/panache-parser/src/syntax/links.rs +0 -0
  211. {panache_cli-3.3.0 → panache_cli-3.4.0}/crates/panache-parser/src/syntax/lists.rs +0 -0
  212. {panache_cli-3.3.0 → panache_cli-3.4.0}/crates/panache-parser/src/syntax/myst.rs +0 -0
  213. {panache_cli-3.3.0 → panache_cli-3.4.0}/crates/panache-parser/src/syntax/raw_tex.rs +0 -0
  214. {panache_cli-3.3.0 → panache_cli-3.4.0}/crates/panache-parser/src/syntax/references.rs +0 -0
  215. {panache_cli-3.3.0 → panache_cli-3.4.0}/crates/panache-parser/src/syntax/shortcodes.rs +0 -0
  216. {panache_cli-3.3.0 → panache_cli-3.4.0}/crates/panache-parser/src/syntax/yaml.rs +0 -0
  217. {panache_cli-3.3.0 → panache_cli-3.4.0}/crates/panache-parser/src/syntax/yaml_ast.rs +0 -0
  218. {panache_cli-3.3.0 → panache_cli-3.4.0}/pyproject.toml +0 -0
  219. {panache_cli-3.3.0 → panache_cli-3.4.0}/src/bib/bibtex.rs +0 -0
  220. {panache_cli-3.3.0 → panache_cli-3.4.0}/src/bib/csl_json.rs +0 -0
  221. {panache_cli-3.3.0 → panache_cli-3.4.0}/src/bib/index.rs +0 -0
  222. {panache_cli-3.3.0 → panache_cli-3.4.0}/src/bib/preview.rs +0 -0
  223. {panache_cli-3.3.0 → panache_cli-3.4.0}/src/bib/ris.rs +0 -0
  224. {panache_cli-3.3.0 → panache_cli-3.4.0}/src/bib.rs +0 -0
  225. {panache_cli-3.3.0 → panache_cli-3.4.0}/src/bin/distill_quarto_schema.rs +0 -0
  226. {panache_cli-3.3.0 → panache_cli-3.4.0}/src/cache.rs +0 -0
  227. {panache_cli-3.3.0 → panache_cli-3.4.0}/src/config/formatter_presets.rs +0 -0
  228. {panache_cli-3.3.0 → panache_cli-3.4.0}/src/config/types/schema_helpers.rs +0 -0
  229. {panache_cli-3.3.0 → panache_cli-3.4.0}/src/config/types.rs +0 -0
  230. {panache_cli-3.3.0 → panache_cli-3.4.0}/src/directives.rs +0 -0
  231. {panache_cli-3.3.0 → panache_cli-3.4.0}/src/external_formatters_common.rs +0 -0
  232. {panache_cli-3.3.0 → panache_cli-3.4.0}/src/external_formatters_sync.rs +0 -0
  233. {panache_cli-3.3.0 → panache_cli-3.4.0}/src/external_tools_common.rs +0 -0
  234. {panache_cli-3.3.0 → panache_cli-3.4.0}/src/formatter.rs +0 -0
  235. {panache_cli-3.3.0 → panache_cli-3.4.0}/src/includes.rs +0 -0
  236. {panache_cli-3.3.0 → panache_cli-3.4.0}/src/linter/diagnostics.rs +0 -0
  237. {panache_cli-3.3.0 → panache_cli-3.4.0}/src/linter/external_linters_sync.rs +0 -0
  238. {panache_cli-3.3.0 → panache_cli-3.4.0}/src/linter/fuzzy.rs +0 -0
  239. {panache_cli-3.3.0 → panache_cli-3.4.0}/src/linter/index.rs +0 -0
  240. {panache_cli-3.3.0 → panache_cli-3.4.0}/src/linter/metadata_diagnostics.rs +0 -0
  241. {panache_cli-3.3.0 → panache_cli-3.4.0}/src/linter/offsets.rs +0 -0
  242. {panache_cli-3.3.0 → panache_cli-3.4.0}/src/linter/project_index.rs +0 -0
  243. {panache_cli-3.3.0 → panache_cli-3.4.0}/src/linter/quarto_schema/distill.rs +0 -0
  244. {panache_cli-3.3.0 → panache_cli-3.4.0}/src/linter/quarto_schema/interp.rs +0 -0
  245. {panache_cli-3.3.0 → panache_cli-3.4.0}/src/linter/quarto_schema/model.rs +0 -0
  246. {panache_cli-3.3.0 → panache_cli-3.4.0}/src/linter/quarto_schema/report.rs +0 -0
  247. {panache_cli-3.3.0 → panache_cli-3.4.0}/src/linter/quarto_schema/value.rs +0 -0
  248. {panache_cli-3.3.0 → panache_cli-3.4.0}/src/linter/quarto_schema.rs +0 -0
  249. {panache_cli-3.3.0 → panache_cli-3.4.0}/src/linter/rules/adjacent_footnote_refs.rs +0 -0
  250. {panache_cli-3.3.0 → panache_cli-3.4.0}/src/linter/rules/chunk_label_spaces.rs +0 -0
  251. {panache_cli-3.3.0 → panache_cli-3.4.0}/src/linter/rules/citation_keys.rs +0 -0
  252. {panache_cli-3.3.0 → panache_cli-3.4.0}/src/linter/rules/citation_nonbreaking_space.rs +0 -0
  253. {panache_cli-3.3.0 → panache_cli-3.4.0}/src/linter/rules/consumer_divergence.rs +0 -0
  254. {panache_cli-3.3.0 → panache_cli-3.4.0}/src/linter/rules/crossref_as_link_target.rs +0 -0
  255. {panache_cli-3.3.0 → panache_cli-3.4.0}/src/linter/rules/duplicate_references.rs +0 -0
  256. {panache_cli-3.3.0 → panache_cli-3.4.0}/src/linter/rules/duplicate_yaml_anchor.rs +0 -0
  257. {panache_cli-3.3.0 → panache_cli-3.4.0}/src/linter/rules/emoji_aliases.rs +0 -0
  258. {panache_cli-3.3.0 → panache_cli-3.4.0}/src/linter/rules/empty_list_item.rs +0 -0
  259. {panache_cli-3.3.0 → panache_cli-3.4.0}/src/linter/rules/empty_values.rs +0 -0
  260. {panache_cli-3.3.0 → panache_cli-3.4.0}/src/linter/rules/figure_crossref_captions.rs +0 -0
  261. {panache_cli-3.3.0 → panache_cli-3.4.0}/src/linter/rules/footnote_after_image.rs +0 -0
  262. {panache_cli-3.3.0 → panache_cli-3.4.0}/src/linter/rules/footnote_ref_in_footnote_def.rs +0 -0
  263. {panache_cli-3.3.0 → panache_cli-3.4.0}/src/linter/rules/footnote_swallowed_by_bracket.rs +0 -0
  264. {panache_cli-3.3.0 → panache_cli-3.4.0}/src/linter/rules/heading_eaten_attrs.rs +0 -0
  265. {panache_cli-3.3.0 → panache_cli-3.4.0}/src/linter/rules/heading_hierarchy.rs +0 -0
  266. {panache_cli-3.3.0 → panache_cli-3.4.0}/src/linter/rules/heading_strip_comments_residue.rs +0 -0
  267. {panache_cli-3.3.0 → panache_cli-3.4.0}/src/linter/rules/html_entities.rs +0 -0
  268. {panache_cli-3.3.0 → panache_cli-3.4.0}/src/linter/rules/link_text_is_url.rs +0 -0
  269. {panache_cli-3.3.0 → panache_cli-3.4.0}/src/linter/rules/math_content.rs +0 -0
  270. {panache_cli-3.3.0 → panache_cli-3.4.0}/src/linter/rules/missing_chunk_labels.rs +0 -0
  271. {panache_cli-3.3.0 → panache_cli-3.4.0}/src/linter/rules/quarto_schema.rs +0 -0
  272. {panache_cli-3.3.0 → panache_cli-3.4.0}/src/linter/rules/reversed_footnote_marker.rs +0 -0
  273. {panache_cli-3.3.0 → panache_cli-3.4.0}/src/linter/rules/stray_fenced_div_markers.rs +0 -0
  274. {panache_cli-3.3.0 → panache_cli-3.4.0}/src/linter/rules/undefined_anchor.rs +0 -0
  275. {panache_cli-3.3.0 → panache_cli-3.4.0}/src/linter/rules/undefined_references.rs +0 -0
  276. {panache_cli-3.3.0 → panache_cli-3.4.0}/src/linter/rules/unspaced_citation.rs +0 -0
  277. {panache_cli-3.3.0 → panache_cli-3.4.0}/src/linter/rules/unsupported_metadata_key.rs +0 -0
  278. {panache_cli-3.3.0 → panache_cli-3.4.0}/src/linter/rules/unused_definitions.rs +0 -0
  279. {panache_cli-3.3.0 → panache_cli-3.4.0}/src/linter/rules/unused_yaml_anchor.rs +0 -0
  280. {panache_cli-3.3.0 → panache_cli-3.4.0}/src/linter/runner.rs +0 -0
  281. {panache_cli-3.3.0 → panache_cli-3.4.0}/src/linter/yaml_anchors.rs +0 -0
  282. {panache_cli-3.3.0 → panache_cli-3.4.0}/src/linter/yaml_resolve.rs +0 -0
  283. {panache_cli-3.3.0 → panache_cli-3.4.0}/src/lsp/config.rs +0 -0
  284. {panache_cli-3.3.0 → panache_cli-3.4.0}/src/lsp/handlers/code_actions.rs +0 -0
  285. {panache_cli-3.3.0 → panache_cli-3.4.0}/src/lsp/handlers/diagnostics.rs +0 -0
  286. {panache_cli-3.3.0 → panache_cli-3.4.0}/src/lsp/handlers/document_highlight.rs +0 -0
  287. {panache_cli-3.3.0 → panache_cli-3.4.0}/src/lsp/handlers/document_links.rs +0 -0
  288. {panache_cli-3.3.0 → panache_cli-3.4.0}/src/lsp/handlers/document_symbols.rs +0 -0
  289. {panache_cli-3.3.0 → panache_cli-3.4.0}/src/lsp/handlers/file_operations.rs +0 -0
  290. {panache_cli-3.3.0 → panache_cli-3.4.0}/src/lsp/handlers/file_rename.rs +0 -0
  291. {panache_cli-3.3.0 → panache_cli-3.4.0}/src/lsp/handlers/file_watcher.rs +0 -0
  292. {panache_cli-3.3.0 → panache_cli-3.4.0}/src/lsp/handlers/folding_ranges.rs +0 -0
  293. {panache_cli-3.3.0 → panache_cli-3.4.0}/src/lsp/handlers/footnote_conversion.rs +0 -0
  294. {panache_cli-3.3.0 → panache_cli-3.4.0}/src/lsp/handlers/formatting.rs +0 -0
  295. {panache_cli-3.3.0 → panache_cli-3.4.0}/src/lsp/handlers/goto_definition.rs +0 -0
  296. {panache_cli-3.3.0 → panache_cli-3.4.0}/src/lsp/handlers/heading_link_conversion.rs +0 -0
  297. {panache_cli-3.3.0 → panache_cli-3.4.0}/src/lsp/handlers/hover.rs +0 -0
  298. {panache_cli-3.3.0 → panache_cli-3.4.0}/src/lsp/handlers/link_conversion.rs +0 -0
  299. {panache_cli-3.3.0 → panache_cli-3.4.0}/src/lsp/handlers/linked_editing_range.rs +0 -0
  300. {panache_cli-3.3.0 → panache_cli-3.4.0}/src/lsp/handlers/list_conversion.rs +0 -0
  301. {panache_cli-3.3.0 → panache_cli-3.4.0}/src/lsp/handlers/prepare_rename.rs +0 -0
  302. {panache_cli-3.3.0 → panache_cli-3.4.0}/src/lsp/handlers/references.rs +0 -0
  303. {panache_cli-3.3.0 → panache_cli-3.4.0}/src/lsp/handlers/rename.rs +0 -0
  304. {panache_cli-3.3.0 → panache_cli-3.4.0}/src/lsp/handlers/semantic_tokens.rs +0 -0
  305. {panache_cli-3.3.0 → panache_cli-3.4.0}/src/lsp/handlers/shortcode_args.rs +0 -0
  306. {panache_cli-3.3.0 → panache_cli-3.4.0}/src/lsp/handlers/workspace_folders.rs +0 -0
  307. {panache_cli-3.3.0 → panache_cli-3.4.0}/src/lsp/handlers.rs +0 -0
  308. {panache_cli-3.3.0 → panache_cli-3.4.0}/src/lsp/helpers.rs +0 -0
  309. {panache_cli-3.3.0 → panache_cli-3.4.0}/src/lsp/line_index.rs +0 -0
  310. {panache_cli-3.3.0 → panache_cli-3.4.0}/src/lsp/navigation.rs +0 -0
  311. {panache_cli-3.3.0 → panache_cli-3.4.0}/src/lsp/symbols.rs +0 -0
  312. {panache_cli-3.3.0 → panache_cli-3.4.0}/src/lsp/task_pool.rs +0 -0
  313. {panache_cli-3.3.0 → panache_cli-3.4.0}/src/lsp/uri_ext.rs +0 -0
  314. {panache_cli-3.3.0 → panache_cli-3.4.0}/src/metadata/bibliography.rs +0 -0
  315. {panache_cli-3.3.0 → panache_cli-3.4.0}/src/metadata/citations.rs +0 -0
  316. {panache_cli-3.3.0 → panache_cli-3.4.0}/src/metadata/project.rs +0 -0
  317. {panache_cli-3.3.0 → panache_cli-3.4.0}/src/metadata/references.rs +0 -0
  318. {panache_cli-3.3.0 → panache_cli-3.4.0}/src/metadata/yaml.rs +0 -0
  319. {panache_cli-3.3.0 → panache_cli-3.4.0}/src/metadata.rs +0 -0
  320. {panache_cli-3.3.0 → panache_cli-3.4.0}/src/syntax.rs +0 -0
  321. {panache_cli-3.3.0 → panache_cli-3.4.0}/src/vfs.rs +0 -0
  322. {panache_cli-3.3.0 → panache_cli-3.4.0}/src/yaml_engine.rs +0 -0
  323. {panache_cli-3.3.0 → panache_cli-3.4.0}/src/yaml_regions.rs +0 -0
@@ -160,9 +160,9 @@ checksum = "36f64beae40a84da1b4b26ff2761a5b895c12adc41dc25aaee1c4f2bbfe97a6e"
160
160
 
161
161
  [[package]]
162
162
  name = "bstr"
163
- version = "1.13.0"
163
+ version = "1.13.1"
164
164
  source = "registry+https://github.com/rust-lang/crates.io-index"
165
- checksum = "1f7dc094d718f2e1c1559ad110e27eeaae14a5465d3d56dd6dbd793079fbd530"
165
+ checksum = "6bb31b46c14244e20ee9984b11bf5c992b91fb6939fea616e3512c8baecdbe5f"
166
166
  dependencies = [
167
167
  "memchr",
168
168
  "regex-automata",
@@ -238,9 +238,9 @@ checksum = "c8d4a3bb8b1e0c1050499d1815f5ab16d04f0959b233085fb31653fbfc9d98f9"
238
238
 
239
239
  [[package]]
240
240
  name = "clap_mangen"
241
- version = "0.3.2"
241
+ version = "0.3.3"
242
242
  source = "registry+https://github.com/rust-lang/crates.io-index"
243
- checksum = "c630ddc90572b3d9abd3f887f0007b4e048faf5c5a59ae607f8ac1c5e3790873"
243
+ checksum = "211d617eaa4b735c96c9e0228fcbdb5120ef623f2b8cb67ffb84c3e02dbc28a4"
244
244
  dependencies = [
245
245
  "clap",
246
246
  "roff",
@@ -594,21 +594,21 @@ dependencies = [
594
594
 
595
595
  [[package]]
596
596
  name = "futures-core"
597
- version = "0.3.33"
597
+ version = "0.3.34"
598
598
  source = "registry+https://github.com/rust-lang/crates.io-index"
599
- checksum = "2cd50c473c80f6d7c3670a752354b8e569b1a7cbfdc0419ec88e5edad85e0dc7"
599
+ checksum = "92d699e522242e69e3003b94ecc1f960f3a5e015aa7c5d7486e65ad01dd94f5e"
600
600
 
601
601
  [[package]]
602
602
  name = "futures-task"
603
- version = "0.3.33"
603
+ version = "0.3.34"
604
604
  source = "registry+https://github.com/rust-lang/crates.io-index"
605
- checksum = "b231ed28831efb4a61a08580c4bc233ec56bc009f4cd8f52da2c3cb97df0c109"
605
+ checksum = "cd417de3d1d015fc3bfd2b1ea46dfc7bab72ef86f1cc7cc9c78e728b34a6d1fd"
606
606
 
607
607
  [[package]]
608
608
  name = "futures-util"
609
- version = "0.3.33"
609
+ version = "0.3.34"
610
610
  source = "registry+https://github.com/rust-lang/crates.io-index"
611
- checksum = "a77a90a256fce34da66415271e30f94ee91c57b04b8a2c042d9cf3220179deaa"
611
+ checksum = "0d50a92467f8ba5dd6e3ee5d4bd04d73ab2e4e1c44474a0674821dfce14b79bc"
612
612
  dependencies = [
613
613
  "futures-core",
614
614
  "futures-task",
@@ -705,9 +705,9 @@ checksum = "fc0fef456e4baa96da950455cd02c081ca953b141298e41db3fc7e36b1da849c"
705
705
 
706
706
  [[package]]
707
707
  name = "icu_collections"
708
- version = "2.2.0"
708
+ version = "2.3.0"
709
709
  source = "registry+https://github.com/rust-lang/crates.io-index"
710
- checksum = "2984d1cd16c883d7935b9e07e44071dca8d917fd52ecc02c04d5fa0b5a3f191c"
710
+ checksum = "fa68d21081c4a05d5a901a1c62add574c77048b6a1c67be3b50ce0b60d4ca513"
711
711
  dependencies = [
712
712
  "displaydoc",
713
713
  "potential_utf",
@@ -719,9 +719,9 @@ dependencies = [
719
719
 
720
720
  [[package]]
721
721
  name = "icu_locale_core"
722
- version = "2.2.0"
722
+ version = "2.3.0"
723
723
  source = "registry+https://github.com/rust-lang/crates.io-index"
724
- checksum = "92219b62b3e2b4d88ac5119f8904c10f8f61bf7e95b640d25ba3075e6cac2c29"
724
+ checksum = "d56e28588da92eee5c3201a6eff33fabdd49b62269c8938d4ff050ce4d900deb"
725
725
  dependencies = [
726
726
  "displaydoc",
727
727
  "litemap",
@@ -732,9 +732,9 @@ dependencies = [
732
732
 
733
733
  [[package]]
734
734
  name = "icu_normalizer"
735
- version = "2.2.0"
735
+ version = "2.3.0"
736
736
  source = "registry+https://github.com/rust-lang/crates.io-index"
737
- checksum = "c56e5ee99d6e3d33bd91c5d85458b6005a22140021cc324cea84dd0e72cff3b4"
737
+ checksum = "12f9cf5f235641ed274641dd81c3f28d870e276763d0797aeeab72317b1c646f"
738
738
  dependencies = [
739
739
  "icu_collections",
740
740
  "icu_normalizer_data",
@@ -746,16 +746,17 @@ dependencies = [
746
746
 
747
747
  [[package]]
748
748
  name = "icu_normalizer_data"
749
- version = "2.2.0"
749
+ version = "2.3.0"
750
750
  source = "registry+https://github.com/rust-lang/crates.io-index"
751
- checksum = "da3be0ae77ea334f4da67c12f149704f19f81d1adf7c51cf482943e84a2bad38"
751
+ checksum = "1563da1ed3e0b3bf3d74c9b85917ac9c56464d2f57242270c09c9e752f8021a0"
752
752
 
753
753
  [[package]]
754
754
  name = "icu_properties"
755
- version = "2.2.0"
755
+ version = "2.3.0"
756
756
  source = "registry+https://github.com/rust-lang/crates.io-index"
757
- checksum = "bee3b67d0ea5c2cca5003417989af8996f8604e34fb9ddf96208a033901e70de"
757
+ checksum = "7e7ca276ad3145661a65914e6daf131ca5120cd3dcee8f8f3214b8875184a148"
758
758
  dependencies = [
759
+ "displaydoc",
759
760
  "icu_collections",
760
761
  "icu_locale_core",
761
762
  "icu_properties_data",
@@ -766,15 +767,15 @@ dependencies = [
766
767
 
767
768
  [[package]]
768
769
  name = "icu_properties_data"
769
- version = "2.2.0"
770
+ version = "2.3.0"
770
771
  source = "registry+https://github.com/rust-lang/crates.io-index"
771
- checksum = "8e2bbb201e0c04f7b4b3e14382af113e17ba4f63e2c9d2ee626b720cbce54a14"
772
+ checksum = "e590f038c1464a96894fd6d10127e90a8be4509f56ff7ecef851b15cee0b7caa"
772
773
 
773
774
  [[package]]
774
775
  name = "icu_provider"
775
- version = "2.2.0"
776
+ version = "2.3.0"
776
777
  source = "registry+https://github.com/rust-lang/crates.io-index"
777
- checksum = "139c4cf31c8b5f33d7e199446eff9c1e02decfc2f0eec2c8d71f65befa45b421"
778
+ checksum = "92a7ed671a6aad807a8651a2e1782a6598fda9ce5185dd8158549e95a91c6428"
778
779
  dependencies = [
779
780
  "displaydoc",
780
781
  "icu_locale_core",
@@ -916,9 +917,9 @@ dependencies = [
916
917
 
917
918
  [[package]]
918
919
  name = "js-sys"
919
- version = "0.3.103"
920
+ version = "0.3.104"
920
921
  source = "registry+https://github.com/rust-lang/crates.io-index"
921
- checksum = "53b44bfcdb3f8d5837a46dae1ca9660a837176eee74a28b229bc626816589102"
922
+ checksum = "0e0c1080212aad755ea003d18543e8768dd432c48819efd73a7bf1e39b7a5a3a"
922
923
  dependencies = [
923
924
  "cfg-if",
924
925
  "futures-util",
@@ -927,9 +928,9 @@ dependencies = [
927
928
 
928
929
  [[package]]
929
930
  name = "jsonschema"
930
- version = "0.49.6"
931
+ version = "0.49.9"
931
932
  source = "registry+https://github.com/rust-lang/crates.io-index"
932
- checksum = "7e17384278234b10419a63c93fc85695ac9fc2da0833e3c59167f9986499590c"
933
+ checksum = "59ec8a241beed129f06114aa68007e905ca350e7baeb6e17a7631bb7978d91b2"
933
934
  dependencies = [
934
935
  "ahash",
935
936
  "bytecount",
@@ -956,18 +957,18 @@ dependencies = [
956
957
 
957
958
  [[package]]
958
959
  name = "jsonschema-regex"
959
- version = "0.49.6"
960
+ version = "0.49.9"
960
961
  source = "registry+https://github.com/rust-lang/crates.io-index"
961
- checksum = "ac634e339e73bf9629f6fb207f7b064d872253ae3b3f5c6e0ce8fd762b16e40f"
962
+ checksum = "91994f45017ed5e66aa8e59b8415f4cb033a6380d7200387b7cf117595fbdf85"
962
963
  dependencies = [
963
964
  "regex-syntax",
964
965
  ]
965
966
 
966
967
  [[package]]
967
968
  name = "jsonschema-value"
968
- version = "0.49.6"
969
+ version = "0.49.9"
969
970
  source = "registry+https://github.com/rust-lang/crates.io-index"
970
- checksum = "92b8e258eb4515a3fc912a9c46e3987040dc07280592280097ea2085527870b8"
971
+ checksum = "7ec7637f83e510868ae6ed625f7ebfbbde4554ee8ce49854caa5126a8b9b9ecb"
971
972
  dependencies = [
972
973
  "ahash",
973
974
  "bytecount",
@@ -1006,9 +1007,9 @@ checksum = "32a66949e030da00e8c7d4434b251670a91556f4144941d37452769c25d58a53"
1006
1007
 
1007
1008
  [[package]]
1008
1009
  name = "litemap"
1009
- version = "0.8.2"
1010
+ version = "0.8.3"
1010
1011
  source = "registry+https://github.com/rust-lang/crates.io-index"
1011
- checksum = "92daf443525c4cce67b150400bc2316076100ce0b3686209eb8cf3c31612e6f0"
1012
+ checksum = "47d9d19d1d6efa0109d2f65ff4c85cddd50bd572e5a00127ab10987290bcefae"
1012
1013
 
1013
1014
  [[package]]
1014
1015
  name = "lock_api"
@@ -1129,9 +1130,9 @@ dependencies = [
1129
1130
 
1130
1131
  [[package]]
1131
1132
  name = "num-integer"
1132
- version = "0.1.46"
1133
+ version = "0.1.47"
1133
1134
  source = "registry+https://github.com/rust-lang/crates.io-index"
1134
- checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f"
1135
+ checksum = "7ce2d95d4b3734dc35aa2f45e1aa22cd416814592a4f9d9205e11affd5b8e10b"
1135
1136
  dependencies = [
1136
1137
  "num-traits",
1137
1138
  ]
@@ -1202,7 +1203,7 @@ checksum = "1a80800c0488c3a21695ea981a54918fbb37abf04f4d0720c453632255e2ff0e"
1202
1203
 
1203
1204
  [[package]]
1204
1205
  name = "panache"
1205
- version = "3.3.0"
1206
+ version = "3.4.0"
1206
1207
  dependencies = [
1207
1208
  "annotate-snippets",
1208
1209
  "assert_cmd",
@@ -1246,7 +1247,7 @@ dependencies = [
1246
1247
 
1247
1248
  [[package]]
1248
1249
  name = "panache-formatter"
1249
- version = "0.20.5"
1250
+ version = "0.21.0"
1250
1251
  dependencies = [
1251
1252
  "insta",
1252
1253
  "log",
@@ -1264,7 +1265,7 @@ dependencies = [
1264
1265
 
1265
1266
  [[package]]
1266
1267
  name = "panache-parser"
1267
- version = "0.25.0"
1268
+ version = "0.26.0"
1268
1269
  dependencies = [
1269
1270
  "entities",
1270
1271
  "insta",
@@ -1349,9 +1350,9 @@ checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
1349
1350
 
1350
1351
  [[package]]
1351
1352
  name = "portable-atomic"
1352
- version = "1.14.0"
1353
+ version = "1.15.0"
1353
1354
  source = "registry+https://github.com/rust-lang/crates.io-index"
1354
- checksum = "3d20d5497ef88037a52ff98267d066e7f11fcc5e99bbfbd58a42336193aacec3"
1355
+ checksum = "05c8b63e8d9609db387f0324918f81d68fe27748f084ef092fb35954d0539a85"
1355
1356
 
1356
1357
  [[package]]
1357
1358
  name = "portable-atomic-util"
@@ -1364,9 +1365,9 @@ dependencies = [
1364
1365
 
1365
1366
  [[package]]
1366
1367
  name = "potential_utf"
1367
- version = "0.1.5"
1368
+ version = "0.1.6"
1368
1369
  source = "registry+https://github.com/rust-lang/crates.io-index"
1369
- checksum = "0103b1cef7ec0cf76490e969665504990193874ea05c85ff9bab8b911d0a0564"
1370
+ checksum = "d83eb9bc6d8e5cf568e7a1101d60ee05e81ed50ea106026f3d18deeb046d7661"
1370
1371
  dependencies = [
1371
1372
  "zerovec",
1372
1373
  ]
@@ -1513,9 +1514,9 @@ dependencies = [
1513
1514
 
1514
1515
  [[package]]
1515
1516
  name = "referencing"
1516
- version = "0.49.6"
1517
+ version = "0.49.9"
1517
1518
  source = "registry+https://github.com/rust-lang/crates.io-index"
1518
- checksum = "42902112f88a27e9afd5683e2ba31956fed2a5d43395f166dd26775ae9c0dedb"
1519
+ checksum = "6efa2154ea6f5ce0fdecdd2a8d18f2fa1a39a8fbba91564f555a592e4dce8278"
1519
1520
  dependencies = [
1520
1521
  "ahash",
1521
1522
  "fluent-uri 0.4.1",
@@ -1925,18 +1926,18 @@ checksum = "79def32ffcd477db1ff26f76dab9e3a91f0bd42a85ca96577089b24623056f9d"
1925
1926
 
1926
1927
  [[package]]
1927
1928
  name = "thiserror"
1928
- version = "2.0.19"
1929
+ version = "2.0.20"
1929
1930
  source = "registry+https://github.com/rust-lang/crates.io-index"
1930
- checksum = "09a43598840e33d5b0331f38c5e30d13bb11c11210a4b58f0d9b18a5a5eefcd9"
1931
+ checksum = "ec86235f5fcc2a73650310756d2ac5b138a5780bbbdfae3eeccec992c435ba4f"
1931
1932
  dependencies = [
1932
1933
  "thiserror-impl",
1933
1934
  ]
1934
1935
 
1935
1936
  [[package]]
1936
1937
  name = "thiserror-impl"
1937
- version = "2.0.19"
1938
+ version = "2.0.20"
1938
1939
  source = "registry+https://github.com/rust-lang/crates.io-index"
1939
- checksum = "43cbfe0cf76104d42a574802844187e84a305e531ed54455f11fbde0f10541cd"
1940
+ checksum = "bc04cd3e1236dd4a98afca4569f2deb3f120e5422a4023be2cb683f8486292af"
1940
1941
  dependencies = [
1941
1942
  "proc-macro2",
1942
1943
  "quote",
@@ -1951,9 +1952,9 @@ checksum = "650d82e943da333637be9f1567d33d605e76810a26464edfd7ae74f7ef181e95"
1951
1952
 
1952
1953
  [[package]]
1953
1954
  name = "tinystr"
1954
- version = "0.8.3"
1955
+ version = "0.8.4"
1955
1956
  source = "registry+https://github.com/rust-lang/crates.io-index"
1956
- checksum = "c8323304221c2a851516f22236c5722a72eaa19749016521d6dff0824447d96d"
1957
+ checksum = "b1e27c91459209c2986af3dcf603a5a74a4368754ce37414f59acc971167f643"
1957
1958
  dependencies = [
1958
1959
  "displaydoc",
1959
1960
  "zerovec",
@@ -2128,9 +2129,9 @@ dependencies = [
2128
2129
 
2129
2130
  [[package]]
2130
2131
  name = "wasm-bindgen"
2131
- version = "0.2.126"
2132
+ version = "0.2.127"
2132
2133
  source = "registry+https://github.com/rust-lang/crates.io-index"
2133
- checksum = "4b067c0c11094aef6b7a801c1e34a26affafdf3d051dba08456b868789aaf9a4"
2134
+ checksum = "1b70935747edd64d89de3efa29d73789b806c15798f8e7dca4d8ac356b50ce70"
2134
2135
  dependencies = [
2135
2136
  "cfg-if",
2136
2137
  "once_cell",
@@ -2141,9 +2142,9 @@ dependencies = [
2141
2142
 
2142
2143
  [[package]]
2143
2144
  name = "wasm-bindgen-macro"
2144
- version = "0.2.126"
2145
+ version = "0.2.127"
2145
2146
  source = "registry+https://github.com/rust-lang/crates.io-index"
2146
- checksum = "167ce5e579f6bcf889c4f7175a8a5a585de84e8ff93976ce393efa5f2837aab1"
2147
+ checksum = "77775f8f3f7217702089053b94958f8f54061a3f663417df76e19cbdcca29bc1"
2147
2148
  dependencies = [
2148
2149
  "quote",
2149
2150
  "wasm-bindgen-macro-support",
@@ -2151,9 +2152,9 @@ dependencies = [
2151
2152
 
2152
2153
  [[package]]
2153
2154
  name = "wasm-bindgen-macro-support"
2154
- version = "0.2.126"
2155
+ version = "0.2.127"
2155
2156
  source = "registry+https://github.com/rust-lang/crates.io-index"
2156
- checksum = "f3997c7839262f4ef12cf90b818d6340c18e80f263f1a94bf157d0ec4420380e"
2157
+ checksum = "e11d33f857dc2fb11b8bc75aee111aa9cbeb12cd9f25efd3d4c2a3dd4e235284"
2157
2158
  dependencies = [
2158
2159
  "bumpalo",
2159
2160
  "proc-macro2",
@@ -2164,9 +2165,9 @@ dependencies = [
2164
2165
 
2165
2166
  [[package]]
2166
2167
  name = "wasm-bindgen-shared"
2167
- version = "0.2.126"
2168
+ version = "0.2.127"
2168
2169
  source = "registry+https://github.com/rust-lang/crates.io-index"
2169
- checksum = "dc1b4cb0cc549fcf58d7dfc081778139b3d283a081644e833e84682ad71cea24"
2170
+ checksum = "7ef64dbcc55df09c7e5a46182d181c2cfa3e925f3da937ea764728b4bbb9dcbf"
2170
2171
  dependencies = [
2171
2172
  "unicode-ident",
2172
2173
  ]
@@ -2191,9 +2192,9 @@ dependencies = [
2191
2192
 
2192
2193
  [[package]]
2193
2194
  name = "wincode"
2194
- version = "0.6.0"
2195
+ version = "0.6.1"
2195
2196
  source = "registry+https://github.com/rust-lang/crates.io-index"
2196
- checksum = "b5d39d1a984eb7ae37afa348f058216d62a6d5f71640f4113a8114386c2a812a"
2197
+ checksum = "bfc6339f1ba427bf7ad7c42403b28e524832ba2ddb5eef1bb2cc3b85db6b7b75"
2197
2198
  dependencies = [
2198
2199
  "pastey",
2199
2200
  "proc-macro2",
@@ -2204,9 +2205,9 @@ dependencies = [
2204
2205
 
2205
2206
  [[package]]
2206
2207
  name = "wincode-derive"
2207
- version = "0.5.0"
2208
+ version = "0.5.1"
2208
2209
  source = "registry+https://github.com/rust-lang/crates.io-index"
2209
- checksum = "4cb427b174d0f50b407f003623db1d892986e780651ee9d4231f3c9fe9ffcbb7"
2210
+ checksum = "11d582d9fc9d813264407a9e16bfa16846ccf15ef032f9bbcd700741bdc00255"
2210
2211
  dependencies = [
2211
2212
  "darling",
2212
2213
  "proc-macro2",
@@ -2252,9 +2253,9 @@ checksum = "1ebf944e87a7c253233ad6766e082e3cd714b5d03812acc24c318f549614536e"
2252
2253
 
2253
2254
  [[package]]
2254
2255
  name = "writeable"
2255
- version = "0.6.3"
2256
+ version = "0.6.4"
2256
2257
  source = "registry+https://github.com/rust-lang/crates.io-index"
2257
- checksum = "1ffae5123b2d3fc086436f8834ae3ab053a283cfac8fe0a0b8eaae044768a4c4"
2258
+ checksum = "3ad82d2a33cdc9674dc7465672f271e096168fcdbe0f799d9e6db8c5892679dc"
2258
2259
 
2259
2260
  [[package]]
2260
2261
  name = "yaml_parser"
@@ -2332,9 +2333,9 @@ dependencies = [
2332
2333
 
2333
2334
  [[package]]
2334
2335
  name = "zerotrie"
2335
- version = "0.2.4"
2336
+ version = "0.2.5"
2336
2337
  source = "registry+https://github.com/rust-lang/crates.io-index"
2337
- checksum = "0f9152d31db0792fa83f70fb2f83148effb5c1f5b8c7686c3459e361d9bc20bf"
2338
+ checksum = "4ea269c3bd32f0a32c321907a2ae912ba6f4649bb0fc764a15627e99a7095a3f"
2338
2339
  dependencies = [
2339
2340
  "displaydoc",
2340
2341
  "yoke",
@@ -2343,9 +2344,9 @@ dependencies = [
2343
2344
 
2344
2345
  [[package]]
2345
2346
  name = "zerovec"
2346
- version = "0.11.6"
2347
+ version = "0.11.7"
2347
2348
  source = "registry+https://github.com/rust-lang/crates.io-index"
2348
- checksum = "90f911cbc359ab6af17377d242225f4d75119aec87ea711a880987b18cd7b239"
2349
+ checksum = "94b5c6b5976d66c1d703c4fd17d3f5e43c8cedaacf604961b171adc7130896d8"
2349
2350
  dependencies = [
2350
2351
  "yoke",
2351
2352
  "zerofrom",
@@ -2354,13 +2355,13 @@ dependencies = [
2354
2355
 
2355
2356
  [[package]]
2356
2357
  name = "zerovec-derive"
2357
- version = "0.11.3"
2358
+ version = "0.11.4"
2358
2359
  source = "registry+https://github.com/rust-lang/crates.io-index"
2359
- checksum = "625dc425cab0dca6dc3c3319506e6593dcb08a9f387ea3b284dbd52a92c40555"
2360
+ checksum = "47402523226a02bfe5230160dc3ccc089aa6f6f19e7fcbb4e6f824bbb1b4aa62"
2360
2361
  dependencies = [
2361
2362
  "proc-macro2",
2362
2363
  "quote",
2363
- "syn 2.0.119",
2364
+ "syn 3.0.3",
2364
2365
  ]
2365
2366
 
2366
2367
  [[package]]
@@ -1,5 +1,8 @@
1
1
  [workspace.package]
2
2
  edition = "2024"
3
+ # Kept in lockstep with the pinned toolchain in `rust-toolchain.toml`, which is
4
+ # the only version CI builds. Bump both together.
5
+ rust-version = "1.94"
3
6
  license = "MIT"
4
7
  repository = "https://github.com/jolars/panache"
5
8
  homepage = "https://panache.bz"
@@ -7,8 +10,9 @@ authors = ["Johan Larsson <johan@jolars.co>"]
7
10
 
8
11
  [package]
9
12
  name = "panache"
10
- version = "3.3.0"
13
+ version = "3.4.0"
11
14
  edition.workspace = true
15
+ rust-version.workspace = true
12
16
  # `distill_quarto_schema` is a dev-only vendoring bin (src/bin/); keep bare
13
17
  # `cargo run` resolving to the CLI for tooling like the pre-commit format hook.
14
18
  default-run = "panache"
@@ -48,8 +52,8 @@ path = "src/main.rs"
48
52
  required-features = ["cli"]
49
53
 
50
54
  [dependencies]
51
- panache-formatter = { path = "crates/panache-formatter", version = "0.20.5" }
52
- panache-parser = { path = "crates/panache-parser", version = "0.25.0", features = [
55
+ panache-formatter = { path = "crates/panache-formatter", version = "0.21.0" }
56
+ panache-parser = { path = "crates/panache-parser", version = "0.26.0", features = [
53
57
  "serde",
54
58
  "schema",
55
59
  ] }
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: panache-cli
3
- Version: 3.3.0
3
+ Version: 3.4.0
4
4
  Classifier: Development Status :: 5 - Production/Stable
5
5
  Classifier: Environment :: Console
6
6
  Classifier: Intended Audience :: Developers
@@ -47,7 +47,7 @@ linters on code blocks.
47
47
 
48
48
  Panache is available from several sources:
49
49
 
50
- - **crates.io**: `cargo install panache`
50
+ - **crates.io**: `cargo install --locked panache`
51
51
  - **Homebrew**: `brew install panache`
52
52
  - **npm**: `npm install -g @panache-cli/panache` (or `npx @panache-cli/panache`)
53
53
  - **PyPI**: `uv tool install panache-cli`/`pipx install panache-cli`
@@ -213,12 +213,12 @@ Panache looks for a configuration in:
213
213
  ```toml
214
214
  # Markdown flavor and line width
215
215
  flavor = "quarto"
216
- line-width = 80
217
- line-ending = "auto"
218
216
 
219
217
  # Formatting style
220
218
  [format]
221
219
  wrap = "reflow"
220
+ line-width = 80
221
+ line-ending = "auto"
222
222
 
223
223
  # External code formatters (opt-in)
224
224
  [formatters]
@@ -21,7 +21,7 @@ linters on code blocks.
21
21
 
22
22
  Panache is available from several sources:
23
23
 
24
- - **crates.io**: `cargo install panache`
24
+ - **crates.io**: `cargo install --locked panache`
25
25
  - **Homebrew**: `brew install panache`
26
26
  - **npm**: `npm install -g @panache-cli/panache` (or `npx @panache-cli/panache`)
27
27
  - **PyPI**: `uv tool install panache-cli`/`pipx install panache-cli`
@@ -187,12 +187,12 @@ Panache looks for a configuration in:
187
187
  ```toml
188
188
  # Markdown flavor and line width
189
189
  flavor = "quarto"
190
- line-width = 80
191
- line-ending = "auto"
192
190
 
193
191
  # Formatting style
194
192
  [format]
195
193
  wrap = "reflow"
194
+ line-width = 80
195
+ line-ending = "auto"
196
196
 
197
197
  # External code formatters (opt-in)
198
198
  [formatters]
@@ -1,5 +1,47 @@
1
1
  # Changelog
2
2
 
3
+ ## [0.21.0](https://github.com/jolars/panache/compare/panache-formatter-v0.20.5...panache-formatter-v0.21.0) (2026-08-14)
4
+
5
+ ### Features
6
+ - **parser:** tag container prefix as `LINE_PREFIX` ([`1d4ac7c`](https://github.com/jolars/panache/commit/1d4ac7c1720dd51328917b6747f84628d8637bcd))
7
+
8
+ ### Bug Fixes
9
+ - **formatter:** strip source container indent from code ([`b6304a5`](https://github.com/jolars/panache/commit/b6304a52959b12fa5bab958d626c66b14c395fc8)), closes [#498](https://github.com/jolars/panache/issues/498)
10
+ - **formatter:** collapse pipe-table cell whitespace ([`69c5282`](https://github.com/jolars/panache/commit/69c52825edeeb3a7fabfed0332d1ef53741b6d1b))
11
+ - **formatter:** collapse simple-table cell whitespace ([`840562c`](https://github.com/jolars/panache/commit/840562c6a3d9fe50bea4fb3cc52952b91da04d47))
12
+ - **parser:** split row bands at hybrid sep lines ([`712fee3`](https://github.com/jolars/panache/commit/712fee3fd3fc2fca3c3323fe66d10dd4e9ab1297))
13
+ - **formatter:** align simple tables like pandoc ([`488fa81`](https://github.com/jolars/panache/commit/488fa810f3dfa8c6bf751fe0f094c3b41f2b451c))
14
+ - **parser:** nest ordered marker at content column ([`0f50724`](https://github.com/jolars/panache/commit/0f507241a08fbb117d87e2014d4978a6c1cdcadc))
15
+ - **formatter:** keep literal `>` in quoted list items ([`d16000d`](https://github.com/jolars/panache/commit/d16000d4cdfc69f07668d7c58c81163e5ab562ee))
16
+ - **formatter:** stop quote depth at list item ([`54a6059`](https://github.com/jolars/panache/commit/54a6059cc58c9ed090c3603e9de74d0207bdaba8))
17
+ - **formatter:** keep nested list indent in quotes ([`d16845e`](https://github.com/jolars/panache/commit/d16845ef2d10d49b0627ca720ece4b2add1afc3b))
18
+ - **parser:** apply table footer rule at run ends ([`89bc3cd`](https://github.com/jolars/panache/commit/89bc3cdb7403fea2fcd53ae06a7abd8dfc1c0e9e))
19
+ - **parser:** keep rowspan grids whole in containers ([`2e5ac3b`](https://github.com/jolars/panache/commit/2e5ac3b1f5aec13e97b7a7d26358ee0f54a57124))
20
+ - **linter:** dedent code sent to external linters ([`9e374a6`](https://github.com/jolars/panache/commit/9e374a6811a89133c7cb8cb00c8b888e15169395))
21
+ - **formatter:** dedent table verbatim fallbacks ([`a5a026d`](https://github.com/jolars/panache/commit/a5a026da5b857e5c81f533e251f53d368374966c))
22
+ - **formatter:** lay out grid tables on dedented lines ([`ba20f86`](https://github.com/jolars/panache/commit/ba20f8605f6e942d3f5896cb2508646dd744a1bf))
23
+ - **parser:** take pipe table columns from the delimiter row ([`d194da2`](https://github.com/jolars/panache/commit/d194da21162ba97d4a98fec598e69a6d4f097849))
24
+ - **parser:** open a container body with a pipe table ([`0e11028`](https://github.com/jolars/panache/commit/0e11028bde7eb5ce82ca0c0fcfa3f32a56e079d7))
25
+ - **formatter:** measure table columns past quote prefix ([`2b9f223`](https://github.com/jolars/panache/commit/2b9f223f39b6e5c5e3049d4700165b21c923bef1))
26
+ - **formatter:** keep unhandled blocks inside the blockquote ([`82041d5`](https://github.com/jolars/panache/commit/82041d52ef586f45b45d5a8e4ba3e93093fda136))
27
+ - **formatter:** prefix `PLAIN` children in quotes ([`fb8b610`](https://github.com/jolars/panache/commit/fb8b61066aa42ccc36da5a5e9e4efa8b74ccaaeb))
28
+ - **formatter:** indent nested container tables ([`71d2df9`](https://github.com/jolars/panache/commit/71d2df955b18f5964d22a46b1e76b7d0034c10e2))
29
+ - **formatter:** guard definition markers in container bodies ([`8c1535d`](https://github.com/jolars/panache/commit/8c1535d2aa566ebda7d796a012d5fbd1adddd4df))
30
+ - **parser:** promote a one-line body to a term ([`952007e`](https://github.com/jolars/panache/commit/952007ecfff515f1ee111d68dc22900ca3c15f8e))
31
+ - **parser:** end a definition body block at a `:` marker ([`928af1a`](https://github.com/jolars/panache/commit/928af1a0c1f774995812c15069bcd09a166d0bc1))
32
+ - **parser:** end a list item block at a `:` marker ([`d2ed198`](https://github.com/jolars/panache/commit/d2ed1984203d5b8be1ba3fa033ef0b2607a3e4fb))
33
+ - **formatter:** drop over-broad citation reflow guard ([`531fb80`](https://github.com/jolars/panache/commit/531fb803841e8b9de334a0fe25e93814fc8b223e))
34
+ - **math:** keep `:=` glued as one relation ([`a65bb40`](https://github.com/jolars/panache/commit/a65bb4035a29a31d648f6d041763c60c53a5da47)), closes [#487](https://github.com/jolars/panache/issues/487)
35
+ - **formatter:** join a lazy fence run into its code span ([`7081c0c`](https://github.com/jolars/panache/commit/7081c0cd75904b390738be5f5b87a8ce1fa33ce9)), closes [#485](https://github.com/jolars/panache/issues/485)
36
+ - **parser:** support `-` as `.unnumbered` shorthand ([`f8f6e67`](https://github.com/jolars/panache/commit/f8f6e67515c4b10a3a4de16c8a8d54d7b8325a47)), closes [#467](https://github.com/jolars/panache/issues/467)
37
+ - **parser:** nest a definition list inside its list item ([`c143a96`](https://github.com/jolars/panache/commit/c143a96c9d2fd20292a6c663deca9c061e6aad14))
38
+ - **parser:** require a definition term to be a one-line block ([`9ff8596`](https://github.com/jolars/panache/commit/9ff85960fbdd8919e5c8f60acb4b76272ec88c91))
39
+ - **formatter:** keep blank after leading list-item block ([`3226741`](https://github.com/jolars/panache/commit/322674199284c19f3a7108b8afc9e2908a1baeab))
40
+ - **formatter:** expand code-span tabs from source column ([`ff7dafa`](https://github.com/jolars/panache/commit/ff7dafa924e80cc04e8b2c271151c0bbb7173e7d))
41
+
42
+ ### Dependencies
43
+ - updated crates/panache-parser to v0.26.0
44
+
3
45
  ## [0.20.5](https://github.com/jolars/panache/compare/panache-formatter-v0.20.4...panache-formatter-v0.20.5) (2026-08-07)
4
46
 
5
47
  ### Bug Fixes
@@ -1,7 +1,8 @@
1
1
  [package]
2
2
  name = "panache-formatter"
3
- version = "0.20.5"
3
+ version = "0.21.0"
4
4
  edition.workspace = true
5
+ rust-version.workspace = true
5
6
  include = [
6
7
  "/src/**/*",
7
8
  "/README.md",
@@ -18,7 +19,7 @@ keywords = ["quarto", "pandoc", "markdown", "formatter"]
18
19
  categories = ["text-processing"]
19
20
 
20
21
  [dependencies]
21
- panache-parser = { path = "../panache-parser", version = "0.25.0" }
22
+ panache-parser = { path = "../panache-parser", version = "0.26.0" }
22
23
  log = { version = "0.4.31", features = ["release_max_level_debug"] }
23
24
  rowan = "0.17.0"
24
25
  serde = { version = "1.0.228", features = ["derive"], optional = true }
@@ -246,12 +246,15 @@ fn extract_code_block_parts(node: &SyntaxNode) -> (Option<SyntaxNode>, Option<St
246
246
  for child in node.children_with_tokens() {
247
247
  match child {
248
248
  NodeOrToken::Token(t) => {
249
- if t.kind() == SyntaxKind::WHITESPACE && !has_fence {
250
- // The pre-fence run is whatever host indent the parser left
251
- // in the block followed by the fence's own indent (a list
252
- // item at content column 2 whose fence is indented one
253
- // further emits `" "` then `" "`). Both come off the
254
- // payload, so accumulate rather than overwrite.
249
+ if matches!(t.kind(), SyntaxKind::WHITESPACE | SyntaxKind::LINE_PREFIX)
250
+ && !has_fence
251
+ {
252
+ // The pre-fence run is the container prefix the parser
253
+ // left in the block (`LINE_PREFIX`) followed by the
254
+ // fence's own indent (a list item at content column 2
255
+ // whose fence is indented one further emits `" "` then
256
+ // `" "`). Both come off the payload, so accumulate rather
257
+ // than overwrite.
255
258
  fence_indent.push_str(t.text());
256
259
  }
257
260
  }
@@ -284,13 +287,17 @@ fn extract_code_block_parts(node: &SyntaxNode) -> (Option<SyntaxNode>, Option<St
284
287
  for token in n.children_with_tokens() {
285
288
  match token {
286
289
  NodeOrToken::Token(t) => match t.kind() {
287
- SyntaxKind::BLOCK_QUOTE_MARKER if at_line_start => {
288
- // Parser may preserve blockquote continuation markers inside
289
- // indented code content for losslessness. These are container
290
- // syntax, not code bytes, so ignore them for formatter output.
290
+ SyntaxKind::LINE_PREFIX
291
+ if at_line_start && !t.text().trim().is_empty() =>
292
+ {
293
+ // Blockquote continuation marker preserved inside code
294
+ // content for losslessness. Container syntax, not code
295
+ // bytes, so ignore it for formatter output.
291
296
  saw_blockquote_marker = true;
292
297
  }
293
- SyntaxKind::WHITESPACE if at_line_start => {
298
+ SyntaxKind::WHITESPACE | SyntaxKind::LINE_PREFIX
299
+ if at_line_start =>
300
+ {
294
301
  if drop_container_indent {
295
302
  // Whole token is container syntax — see
296
303
  // `fenced_in_blockquote`. Covers a lazy