rumdl 0.0.138__tar.gz → 0.0.139__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.

Potentially problematic release.


This version of rumdl might be problematic. Click here for more details.

Files changed (428) hide show
  1. {rumdl-0.0.138 → rumdl-0.0.139}/CHANGELOG.md +86 -1
  2. {rumdl-0.0.138 → rumdl-0.0.139}/Cargo.lock +52 -44
  3. {rumdl-0.0.138 → rumdl-0.0.139}/Cargo.toml +1 -1
  4. {rumdl-0.0.138 → rumdl-0.0.139}/PKG-INFO +3 -1
  5. {rumdl-0.0.138 → rumdl-0.0.139}/README.md +2 -0
  6. {rumdl-0.0.138 → rumdl-0.0.139}/src/inline_config.rs +8 -0
  7. {rumdl-0.0.138 → rumdl-0.0.139}/src/lint_context.rs +201 -59
  8. {rumdl-0.0.138 → rumdl-0.0.139}/src/rules/md005_list_indent.rs +24 -33
  9. {rumdl-0.0.138 → rumdl-0.0.139}/src/rules/md006_start_bullets.rs +2 -2
  10. {rumdl-0.0.138 → rumdl-0.0.139}/src/rules/md007_ul_indent.rs +78 -1
  11. {rumdl-0.0.138 → rumdl-0.0.139}/src/rules/md025_single_title/md025_config.rs +2 -2
  12. {rumdl-0.0.138 → rumdl-0.0.139}/src/rules/md025_single_title.rs +12 -2
  13. {rumdl-0.0.138 → rumdl-0.0.139}/src/rules/md032_blanks_around_lists.rs +72 -41
  14. {rumdl-0.0.138 → rumdl-0.0.139}/src/rules/md036_no_emphasis_only_first.rs +49 -38
  15. {rumdl-0.0.138 → rumdl-0.0.139}/src/rules/md049_emphasis_style.rs +13 -36
  16. {rumdl-0.0.138 → rumdl-0.0.139}/src/rules/md051_link_fragments.rs +16 -1
  17. {rumdl-0.0.138 → rumdl-0.0.139}/src/rules/md052_reference_links_images.rs +39 -0
  18. {rumdl-0.0.138 → rumdl-0.0.139}/src/rules/md053_link_image_reference_definitions.rs +19 -3
  19. {rumdl-0.0.138 → rumdl-0.0.139}/src/utils/code_block_utils.rs +62 -16
  20. {rumdl-0.0.138 → rumdl-0.0.139}/src/utils/document_structure.rs +24 -4
  21. {rumdl-0.0.138 → rumdl-0.0.139}/tests/rules/md005_dynamic_indent_test.rs +3 -3
  22. {rumdl-0.0.138 → rumdl-0.0.139}/tests/rules/md007_test.rs +132 -0
  23. {rumdl-0.0.138 → rumdl-0.0.139}/tests/rules/md032_test.rs +10 -2
  24. {rumdl-0.0.138 → rumdl-0.0.139}/tests/rules/md051_edge_cases_test.rs +5 -0
  25. {rumdl-0.0.138 → rumdl-0.0.139}/tests/rules/md052_test.rs +8 -3
  26. {rumdl-0.0.138 → rumdl-0.0.139}/tests/rules/md053_test.rs +73 -0
  27. rumdl-0.0.139/tests/utf8_boundary_tests.rs +216 -0
  28. {rumdl-0.0.138 → rumdl-0.0.139}/.config/nextest.toml +0 -0
  29. {rumdl-0.0.138 → rumdl-0.0.139}/.mise.toml +0 -0
  30. {rumdl-0.0.138 → rumdl-0.0.139}/.pre-commit-config.yaml +0 -0
  31. {rumdl-0.0.138 → rumdl-0.0.139}/.rumdl.toml +0 -0
  32. {rumdl-0.0.138 → rumdl-0.0.139}/.rustfmt.toml +0 -0
  33. {rumdl-0.0.138 → rumdl-0.0.139}/LICENSE +0 -0
  34. {rumdl-0.0.138 → rumdl-0.0.139}/MANIFEST.in +0 -0
  35. {rumdl-0.0.138 → rumdl-0.0.139}/Makefile +0 -0
  36. {rumdl-0.0.138 → rumdl-0.0.139}/assets/logo.png +0 -0
  37. {rumdl-0.0.138 → rumdl-0.0.139}/benches/fix_performance.rs +0 -0
  38. {rumdl-0.0.138 → rumdl-0.0.139}/benches/range_performance.rs +0 -0
  39. {rumdl-0.0.138 → rumdl-0.0.139}/benches/range_utils_benchmark.rs +0 -0
  40. {rumdl-0.0.138 → rumdl-0.0.139}/benches/rule_performance.rs +0 -0
  41. {rumdl-0.0.138 → rumdl-0.0.139}/benches/simple_fix_bench.rs +0 -0
  42. {rumdl-0.0.138 → rumdl-0.0.139}/benchmark/bin/bench_lint_context.rs +0 -0
  43. {rumdl-0.0.138 → rumdl-0.0.139}/benchmark/bin/benchmark.rs +0 -0
  44. {rumdl-0.0.138 → rumdl-0.0.139}/benchmark/bin/benchmark_rule.rs +0 -0
  45. {rumdl-0.0.138 → rumdl-0.0.139}/benchmark/bin/file_parallel_benchmark.rs +0 -0
  46. {rumdl-0.0.138 → rumdl-0.0.139}/benchmark/bin/measure_code_span_performance.rs +0 -0
  47. {rumdl-0.0.138 → rumdl-0.0.139}/docs/RULES.md +0 -0
  48. {rumdl-0.0.138 → rumdl-0.0.139}/docs/global-settings.md +0 -0
  49. {rumdl-0.0.138 → rumdl-0.0.139}/docs/md001.md +0 -0
  50. {rumdl-0.0.138 → rumdl-0.0.139}/docs/md002.md +0 -0
  51. {rumdl-0.0.138 → rumdl-0.0.139}/docs/md003.md +0 -0
  52. {rumdl-0.0.138 → rumdl-0.0.139}/docs/md004.md +0 -0
  53. {rumdl-0.0.138 → rumdl-0.0.139}/docs/md005.md +0 -0
  54. {rumdl-0.0.138 → rumdl-0.0.139}/docs/md006.md +0 -0
  55. {rumdl-0.0.138 → rumdl-0.0.139}/docs/md007.md +0 -0
  56. {rumdl-0.0.138 → rumdl-0.0.139}/docs/md009.md +0 -0
  57. {rumdl-0.0.138 → rumdl-0.0.139}/docs/md010.md +0 -0
  58. {rumdl-0.0.138 → rumdl-0.0.139}/docs/md011.md +0 -0
  59. {rumdl-0.0.138 → rumdl-0.0.139}/docs/md012.md +0 -0
  60. {rumdl-0.0.138 → rumdl-0.0.139}/docs/md013.md +0 -0
  61. {rumdl-0.0.138 → rumdl-0.0.139}/docs/md014.md +0 -0
  62. {rumdl-0.0.138 → rumdl-0.0.139}/docs/md018.md +0 -0
  63. {rumdl-0.0.138 → rumdl-0.0.139}/docs/md019.md +0 -0
  64. {rumdl-0.0.138 → rumdl-0.0.139}/docs/md020.md +0 -0
  65. {rumdl-0.0.138 → rumdl-0.0.139}/docs/md021.md +0 -0
  66. {rumdl-0.0.138 → rumdl-0.0.139}/docs/md022.md +0 -0
  67. {rumdl-0.0.138 → rumdl-0.0.139}/docs/md023.md +0 -0
  68. {rumdl-0.0.138 → rumdl-0.0.139}/docs/md024.md +0 -0
  69. {rumdl-0.0.138 → rumdl-0.0.139}/docs/md025.md +0 -0
  70. {rumdl-0.0.138 → rumdl-0.0.139}/docs/md026.md +0 -0
  71. {rumdl-0.0.138 → rumdl-0.0.139}/docs/md027.md +0 -0
  72. {rumdl-0.0.138 → rumdl-0.0.139}/docs/md028.md +0 -0
  73. {rumdl-0.0.138 → rumdl-0.0.139}/docs/md029.md +0 -0
  74. {rumdl-0.0.138 → rumdl-0.0.139}/docs/md030.md +0 -0
  75. {rumdl-0.0.138 → rumdl-0.0.139}/docs/md031.md +0 -0
  76. {rumdl-0.0.138 → rumdl-0.0.139}/docs/md032.md +0 -0
  77. {rumdl-0.0.138 → rumdl-0.0.139}/docs/md033.md +0 -0
  78. {rumdl-0.0.138 → rumdl-0.0.139}/docs/md034.md +0 -0
  79. {rumdl-0.0.138 → rumdl-0.0.139}/docs/md035.md +0 -0
  80. {rumdl-0.0.138 → rumdl-0.0.139}/docs/md036.md +0 -0
  81. {rumdl-0.0.138 → rumdl-0.0.139}/docs/md037.md +0 -0
  82. {rumdl-0.0.138 → rumdl-0.0.139}/docs/md038.md +0 -0
  83. {rumdl-0.0.138 → rumdl-0.0.139}/docs/md039.md +0 -0
  84. {rumdl-0.0.138 → rumdl-0.0.139}/docs/md040.md +0 -0
  85. {rumdl-0.0.138 → rumdl-0.0.139}/docs/md041.md +0 -0
  86. {rumdl-0.0.138 → rumdl-0.0.139}/docs/md042.md +0 -0
  87. {rumdl-0.0.138 → rumdl-0.0.139}/docs/md043.md +0 -0
  88. {rumdl-0.0.138 → rumdl-0.0.139}/docs/md044.md +0 -0
  89. {rumdl-0.0.138 → rumdl-0.0.139}/docs/md045.md +0 -0
  90. {rumdl-0.0.138 → rumdl-0.0.139}/docs/md046.md +0 -0
  91. {rumdl-0.0.138 → rumdl-0.0.139}/docs/md047.md +0 -0
  92. {rumdl-0.0.138 → rumdl-0.0.139}/docs/md048.md +0 -0
  93. {rumdl-0.0.138 → rumdl-0.0.139}/docs/md049.md +0 -0
  94. {rumdl-0.0.138 → rumdl-0.0.139}/docs/md050.md +0 -0
  95. {rumdl-0.0.138 → rumdl-0.0.139}/docs/md051.md +0 -0
  96. {rumdl-0.0.138 → rumdl-0.0.139}/docs/md052.md +0 -0
  97. {rumdl-0.0.138 → rumdl-0.0.139}/docs/md053.md +0 -0
  98. {rumdl-0.0.138 → rumdl-0.0.139}/docs/md054.md +0 -0
  99. {rumdl-0.0.138 → rumdl-0.0.139}/docs/md055.md +0 -0
  100. {rumdl-0.0.138 → rumdl-0.0.139}/docs/md056.md +0 -0
  101. {rumdl-0.0.138 → rumdl-0.0.139}/docs/md057.md +0 -0
  102. {rumdl-0.0.138 → rumdl-0.0.139}/docs/md058.md +0 -0
  103. {rumdl-0.0.138 → rumdl-0.0.139}/docs/vscode-extension.md +0 -0
  104. {rumdl-0.0.138 → rumdl-0.0.139}/parity_check.py +0 -0
  105. {rumdl-0.0.138 → rumdl-0.0.139}/pyproject.toml +0 -0
  106. {rumdl-0.0.138 → rumdl-0.0.139}/python/MANIFEST.in +0 -0
  107. {rumdl-0.0.138 → rumdl-0.0.139}/python/PYTHON-README.md +0 -0
  108. {rumdl-0.0.138 → rumdl-0.0.139}/python/rumdl/__init__.py +0 -0
  109. {rumdl-0.0.138 → rumdl-0.0.139}/python/rumdl/__main__.py +0 -0
  110. {rumdl-0.0.138 → rumdl-0.0.139}/python/rumdl/py.typed +0 -0
  111. {rumdl-0.0.138 → rumdl-0.0.139}/rumdl.toml.example +0 -0
  112. {rumdl-0.0.138 → rumdl-0.0.139}/rust-toolchain.toml +0 -0
  113. {rumdl-0.0.138 → rumdl-0.0.139}/scripts/extract-changelog.sh +0 -0
  114. {rumdl-0.0.138 → rumdl-0.0.139}/scripts/generate-downloads-table.sh +0 -0
  115. {rumdl-0.0.138 → rumdl-0.0.139}/scripts/pre-release.sh +0 -0
  116. {rumdl-0.0.138 → rumdl-0.0.139}/scripts/prepare-release.sh +0 -0
  117. {rumdl-0.0.138 → rumdl-0.0.139}/scripts/setup-pre-commit.sh +0 -0
  118. {rumdl-0.0.138 → rumdl-0.0.139}/scripts/update-pre-commit-docs.sh +0 -0
  119. {rumdl-0.0.138 → rumdl-0.0.139}/src/config.rs +0 -0
  120. {rumdl-0.0.138 → rumdl-0.0.139}/src/exit_codes.rs +0 -0
  121. {rumdl-0.0.138 → rumdl-0.0.139}/src/lib.rs +0 -0
  122. {rumdl-0.0.138 → rumdl-0.0.139}/src/lsp/mod.rs +0 -0
  123. {rumdl-0.0.138 → rumdl-0.0.139}/src/lsp/server.rs +0 -0
  124. {rumdl-0.0.138 → rumdl-0.0.139}/src/lsp/types.rs +0 -0
  125. {rumdl-0.0.138 → rumdl-0.0.139}/src/main.rs +0 -0
  126. {rumdl-0.0.138 → rumdl-0.0.139}/src/markdownlint_config.rs +0 -0
  127. {rumdl-0.0.138 → rumdl-0.0.139}/src/output/formatters/azure.rs +0 -0
  128. {rumdl-0.0.138 → rumdl-0.0.139}/src/output/formatters/concise.rs +0 -0
  129. {rumdl-0.0.138 → rumdl-0.0.139}/src/output/formatters/github.rs +0 -0
  130. {rumdl-0.0.138 → rumdl-0.0.139}/src/output/formatters/gitlab.rs +0 -0
  131. {rumdl-0.0.138 → rumdl-0.0.139}/src/output/formatters/grouped.rs +0 -0
  132. {rumdl-0.0.138 → rumdl-0.0.139}/src/output/formatters/json.rs +0 -0
  133. {rumdl-0.0.138 → rumdl-0.0.139}/src/output/formatters/json_lines.rs +0 -0
  134. {rumdl-0.0.138 → rumdl-0.0.139}/src/output/formatters/junit.rs +0 -0
  135. {rumdl-0.0.138 → rumdl-0.0.139}/src/output/formatters/mod.rs +0 -0
  136. {rumdl-0.0.138 → rumdl-0.0.139}/src/output/formatters/pylint.rs +0 -0
  137. {rumdl-0.0.138 → rumdl-0.0.139}/src/output/formatters/sarif.rs +0 -0
  138. {rumdl-0.0.138 → rumdl-0.0.139}/src/output/formatters/text.rs +0 -0
  139. {rumdl-0.0.138 → rumdl-0.0.139}/src/output/mod.rs +0 -0
  140. {rumdl-0.0.138 → rumdl-0.0.139}/src/parallel.rs +0 -0
  141. {rumdl-0.0.138 → rumdl-0.0.139}/src/performance.rs +0 -0
  142. {rumdl-0.0.138 → rumdl-0.0.139}/src/profiling.rs +0 -0
  143. {rumdl-0.0.138 → rumdl-0.0.139}/src/python.rs +0 -0
  144. {rumdl-0.0.138 → rumdl-0.0.139}/src/rule.rs +0 -0
  145. {rumdl-0.0.138 → rumdl-0.0.139}/src/rule_config.rs +0 -0
  146. {rumdl-0.0.138 → rumdl-0.0.139}/src/rule_config_serde.rs +0 -0
  147. {rumdl-0.0.138 → rumdl-0.0.139}/src/rules/blockquote_utils.rs +0 -0
  148. {rumdl-0.0.138 → rumdl-0.0.139}/src/rules/code_block_utils.rs +0 -0
  149. {rumdl-0.0.138 → rumdl-0.0.139}/src/rules/code_fence_utils.rs +0 -0
  150. {rumdl-0.0.138 → rumdl-0.0.139}/src/rules/emphasis_style.rs +0 -0
  151. {rumdl-0.0.138 → rumdl-0.0.139}/src/rules/front_matter_utils.rs +0 -0
  152. {rumdl-0.0.138 → rumdl-0.0.139}/src/rules/heading_utils.rs +0 -0
  153. {rumdl-0.0.138 → rumdl-0.0.139}/src/rules/list_utils.rs +0 -0
  154. {rumdl-0.0.138 → rumdl-0.0.139}/src/rules/md001_heading_increment.rs +0 -0
  155. {rumdl-0.0.138 → rumdl-0.0.139}/src/rules/md002_first_heading_h1/md002_config.rs +0 -0
  156. {rumdl-0.0.138 → rumdl-0.0.139}/src/rules/md002_first_heading_h1.rs +0 -0
  157. {rumdl-0.0.138 → rumdl-0.0.139}/src/rules/md003_heading_style/md003_config.rs +0 -0
  158. {rumdl-0.0.138 → rumdl-0.0.139}/src/rules/md003_heading_style.rs +0 -0
  159. {rumdl-0.0.138 → rumdl-0.0.139}/src/rules/md004_unordered_list_style/md004_config.rs +0 -0
  160. {rumdl-0.0.138 → rumdl-0.0.139}/src/rules/md004_unordered_list_style.rs +0 -0
  161. {rumdl-0.0.138 → rumdl-0.0.139}/src/rules/md007_ul_indent/md007_config.rs +0 -0
  162. {rumdl-0.0.138 → rumdl-0.0.139}/src/rules/md009_trailing_spaces/md009_config.rs +0 -0
  163. {rumdl-0.0.138 → rumdl-0.0.139}/src/rules/md009_trailing_spaces.rs +0 -0
  164. {rumdl-0.0.138 → rumdl-0.0.139}/src/rules/md010_no_hard_tabs/md010_config.rs +0 -0
  165. {rumdl-0.0.138 → rumdl-0.0.139}/src/rules/md010_no_hard_tabs.rs +0 -0
  166. {rumdl-0.0.138 → rumdl-0.0.139}/src/rules/md011_no_reversed_links.rs +0 -0
  167. {rumdl-0.0.138 → rumdl-0.0.139}/src/rules/md012_no_multiple_blanks/md012_config.rs +0 -0
  168. {rumdl-0.0.138 → rumdl-0.0.139}/src/rules/md012_no_multiple_blanks.rs +0 -0
  169. {rumdl-0.0.138 → rumdl-0.0.139}/src/rules/md013_line_length/md013_config.rs +0 -0
  170. {rumdl-0.0.138 → rumdl-0.0.139}/src/rules/md013_line_length.rs +0 -0
  171. {rumdl-0.0.138 → rumdl-0.0.139}/src/rules/md014_commands_show_output/md014_config.rs +0 -0
  172. {rumdl-0.0.138 → rumdl-0.0.139}/src/rules/md014_commands_show_output.rs +0 -0
  173. {rumdl-0.0.138 → rumdl-0.0.139}/src/rules/md018_no_missing_space_atx.rs +0 -0
  174. {rumdl-0.0.138 → rumdl-0.0.139}/src/rules/md019_no_multiple_space_atx.rs +0 -0
  175. {rumdl-0.0.138 → rumdl-0.0.139}/src/rules/md020_no_missing_space_closed_atx.rs +0 -0
  176. {rumdl-0.0.138 → rumdl-0.0.139}/src/rules/md021_no_multiple_space_closed_atx.rs +0 -0
  177. {rumdl-0.0.138 → rumdl-0.0.139}/src/rules/md022_blanks_around_headings/md022_config.rs +0 -0
  178. {rumdl-0.0.138 → rumdl-0.0.139}/src/rules/md022_blanks_around_headings.rs +0 -0
  179. {rumdl-0.0.138 → rumdl-0.0.139}/src/rules/md023_heading_start_left.rs +0 -0
  180. {rumdl-0.0.138 → rumdl-0.0.139}/src/rules/md024_no_duplicate_heading/md024_config.rs +0 -0
  181. {rumdl-0.0.138 → rumdl-0.0.139}/src/rules/md024_no_duplicate_heading.rs +0 -0
  182. {rumdl-0.0.138 → rumdl-0.0.139}/src/rules/md026_no_trailing_punctuation/md026_config.rs +0 -0
  183. {rumdl-0.0.138 → rumdl-0.0.139}/src/rules/md026_no_trailing_punctuation.rs +0 -0
  184. {rumdl-0.0.138 → rumdl-0.0.139}/src/rules/md027_multiple_spaces_blockquote.rs +0 -0
  185. {rumdl-0.0.138 → rumdl-0.0.139}/src/rules/md028_no_blanks_blockquote.rs +0 -0
  186. {rumdl-0.0.138 → rumdl-0.0.139}/src/rules/md029_ordered_list_prefix/md029_config.rs +0 -0
  187. {rumdl-0.0.138 → rumdl-0.0.139}/src/rules/md029_ordered_list_prefix.rs +0 -0
  188. {rumdl-0.0.138 → rumdl-0.0.139}/src/rules/md030_list_marker_space/md030_config.rs +0 -0
  189. {rumdl-0.0.138 → rumdl-0.0.139}/src/rules/md030_list_marker_space.rs +0 -0
  190. {rumdl-0.0.138 → rumdl-0.0.139}/src/rules/md031_blanks_around_fences.rs +0 -0
  191. {rumdl-0.0.138 → rumdl-0.0.139}/src/rules/md033_no_inline_html/md033_config.rs +0 -0
  192. {rumdl-0.0.138 → rumdl-0.0.139}/src/rules/md033_no_inline_html.rs +0 -0
  193. {rumdl-0.0.138 → rumdl-0.0.139}/src/rules/md034_no_bare_urls.rs +0 -0
  194. {rumdl-0.0.138 → rumdl-0.0.139}/src/rules/md035_hr_style/md035_config.rs +0 -0
  195. {rumdl-0.0.138 → rumdl-0.0.139}/src/rules/md035_hr_style.rs +0 -0
  196. {rumdl-0.0.138 → rumdl-0.0.139}/src/rules/md036_no_emphasis_only_first/md036_config.rs +0 -0
  197. {rumdl-0.0.138 → rumdl-0.0.139}/src/rules/md037_spaces_around_emphasis.rs +0 -0
  198. {rumdl-0.0.138 → rumdl-0.0.139}/src/rules/md038_no_space_in_code.rs +0 -0
  199. {rumdl-0.0.138 → rumdl-0.0.139}/src/rules/md039_no_space_in_links.rs +0 -0
  200. {rumdl-0.0.138 → rumdl-0.0.139}/src/rules/md040_fenced_code_language.rs +0 -0
  201. {rumdl-0.0.138 → rumdl-0.0.139}/src/rules/md041_first_line_heading.rs +0 -0
  202. {rumdl-0.0.138 → rumdl-0.0.139}/src/rules/md042_no_empty_links.rs +0 -0
  203. {rumdl-0.0.138 → rumdl-0.0.139}/src/rules/md043_required_headings.rs +0 -0
  204. {rumdl-0.0.138 → rumdl-0.0.139}/src/rules/md044_proper_names/md044_config.rs +0 -0
  205. {rumdl-0.0.138 → rumdl-0.0.139}/src/rules/md044_proper_names.rs +0 -0
  206. {rumdl-0.0.138 → rumdl-0.0.139}/src/rules/md045_no_alt_text/md045_config.rs +0 -0
  207. {rumdl-0.0.138 → rumdl-0.0.139}/src/rules/md045_no_alt_text.rs +0 -0
  208. {rumdl-0.0.138 → rumdl-0.0.139}/src/rules/md046_code_block_style/md046_config.rs +0 -0
  209. {rumdl-0.0.138 → rumdl-0.0.139}/src/rules/md046_code_block_style.rs +0 -0
  210. {rumdl-0.0.138 → rumdl-0.0.139}/src/rules/md047_single_trailing_newline.rs +0 -0
  211. {rumdl-0.0.138 → rumdl-0.0.139}/src/rules/md048_code_fence_style/md048_config.rs +0 -0
  212. {rumdl-0.0.138 → rumdl-0.0.139}/src/rules/md048_code_fence_style.rs +0 -0
  213. {rumdl-0.0.138 → rumdl-0.0.139}/src/rules/md049_emphasis_style/md049_config.rs +0 -0
  214. {rumdl-0.0.138 → rumdl-0.0.139}/src/rules/md050_strong_style/md050_config.rs +0 -0
  215. {rumdl-0.0.138 → rumdl-0.0.139}/src/rules/md050_strong_style.rs +0 -0
  216. {rumdl-0.0.138 → rumdl-0.0.139}/src/rules/md054_link_image_style/md054_config.rs +0 -0
  217. {rumdl-0.0.138 → rumdl-0.0.139}/src/rules/md054_link_image_style.rs +0 -0
  218. {rumdl-0.0.138 → rumdl-0.0.139}/src/rules/md055_table_pipe_style/md055_config.rs +0 -0
  219. {rumdl-0.0.138 → rumdl-0.0.139}/src/rules/md055_table_pipe_style.rs +0 -0
  220. {rumdl-0.0.138 → rumdl-0.0.139}/src/rules/md056_table_column_count.rs +0 -0
  221. {rumdl-0.0.138 → rumdl-0.0.139}/src/rules/md057_existing_relative_links/md057_config.rs +0 -0
  222. {rumdl-0.0.138 → rumdl-0.0.139}/src/rules/md057_existing_relative_links.rs +0 -0
  223. {rumdl-0.0.138 → rumdl-0.0.139}/src/rules/md058_blanks_around_tables.rs +0 -0
  224. {rumdl-0.0.138 → rumdl-0.0.139}/src/rules/mod.rs +0 -0
  225. {rumdl-0.0.138 → rumdl-0.0.139}/src/rules/strong_style.rs +0 -0
  226. {rumdl-0.0.138 → rumdl-0.0.139}/src/utils/anchor_styles/github.rs +0 -0
  227. {rumdl-0.0.138 → rumdl-0.0.139}/src/utils/anchor_styles/jekyll.rs +0 -0
  228. {rumdl-0.0.138 → rumdl-0.0.139}/src/utils/anchor_styles/kramdown.rs +0 -0
  229. {rumdl-0.0.138 → rumdl-0.0.139}/src/utils/anchor_styles/kramdown_gfm.rs +0 -0
  230. {rumdl-0.0.138 → rumdl-0.0.139}/src/utils/anchor_styles/mod.rs +0 -0
  231. {rumdl-0.0.138 → rumdl-0.0.139}/src/utils/ast_utils.rs +0 -0
  232. {rumdl-0.0.138 → rumdl-0.0.139}/src/utils/early_returns.rs +0 -0
  233. {rumdl-0.0.138 → rumdl-0.0.139}/src/utils/element_cache.rs +0 -0
  234. {rumdl-0.0.138 → rumdl-0.0.139}/src/utils/emphasis_utils.rs +0 -0
  235. {rumdl-0.0.138 → rumdl-0.0.139}/src/utils/fix_utils.rs +0 -0
  236. {rumdl-0.0.138 → rumdl-0.0.139}/src/utils/header_id_utils.rs +0 -0
  237. {rumdl-0.0.138 → rumdl-0.0.139}/src/utils/kramdown_utils.rs +0 -0
  238. {rumdl-0.0.138 → rumdl-0.0.139}/src/utils/line_ending.rs +0 -0
  239. {rumdl-0.0.138 → rumdl-0.0.139}/src/utils/markdown_elements.rs +0 -0
  240. {rumdl-0.0.138 → rumdl-0.0.139}/src/utils/mkdocs_admonitions.rs +0 -0
  241. {rumdl-0.0.138 → rumdl-0.0.139}/src/utils/mkdocs_common.rs +0 -0
  242. {rumdl-0.0.138 → rumdl-0.0.139}/src/utils/mkdocs_critic.rs +0 -0
  243. {rumdl-0.0.138 → rumdl-0.0.139}/src/utils/mkdocs_footnotes.rs +0 -0
  244. {rumdl-0.0.138 → rumdl-0.0.139}/src/utils/mkdocs_patterns.rs +0 -0
  245. {rumdl-0.0.138 → rumdl-0.0.139}/src/utils/mkdocs_snippets.rs +0 -0
  246. {rumdl-0.0.138 → rumdl-0.0.139}/src/utils/mkdocs_tabs.rs +0 -0
  247. {rumdl-0.0.138 → rumdl-0.0.139}/src/utils/mkdocs_test_utils.rs +0 -0
  248. {rumdl-0.0.138 → rumdl-0.0.139}/src/utils/mkdocstrings_refs.rs +0 -0
  249. {rumdl-0.0.138 → rumdl-0.0.139}/src/utils/mod.rs +0 -0
  250. {rumdl-0.0.138 → rumdl-0.0.139}/src/utils/range_utils.rs +0 -0
  251. {rumdl-0.0.138 → rumdl-0.0.139}/src/utils/regex_cache.rs +0 -0
  252. {rumdl-0.0.138 → rumdl-0.0.139}/src/utils/skip_context.rs +0 -0
  253. {rumdl-0.0.138 → rumdl-0.0.139}/src/utils/string_interner.rs +0 -0
  254. {rumdl-0.0.138 → rumdl-0.0.139}/src/utils/table_utils.rs +0 -0
  255. {rumdl-0.0.138 → rumdl-0.0.139}/src/utils/text_reflow.rs +0 -0
  256. {rumdl-0.0.138 → rumdl-0.0.139}/src/vscode.rs +0 -0
  257. {rumdl-0.0.138 → rumdl-0.0.139}/tests/advanced_integration_tests.rs +0 -0
  258. {rumdl-0.0.138 → rumdl-0.0.139}/tests/character_ranges/additional_tests.rs +0 -0
  259. {rumdl-0.0.138 → rumdl-0.0.139}/tests/character_ranges/basic_tests.rs +0 -0
  260. {rumdl-0.0.138 → rumdl-0.0.139}/tests/character_ranges/comprehensive_tests.rs +0 -0
  261. {rumdl-0.0.138 → rumdl-0.0.139}/tests/character_ranges/extended_tests.rs +0 -0
  262. {rumdl-0.0.138 → rumdl-0.0.139}/tests/character_ranges/mod.rs +0 -0
  263. {rumdl-0.0.138 → rumdl-0.0.139}/tests/character_ranges/unicode_utils.rs +0 -0
  264. {rumdl-0.0.138 → rumdl-0.0.139}/tests/cli_duplication_test.rs +0 -0
  265. {rumdl-0.0.138 → rumdl-0.0.139}/tests/cli_explain_test.rs +0 -0
  266. {rumdl-0.0.138 → rumdl-0.0.139}/tests/cli_flag_precedence_test.rs +0 -0
  267. {rumdl-0.0.138 → rumdl-0.0.139}/tests/cli_integration_tests.rs +0 -0
  268. {rumdl-0.0.138 → rumdl-0.0.139}/tests/cli_lsp_fix_consistency.rs +0 -0
  269. {rumdl-0.0.138 → rumdl-0.0.139}/tests/cli_statistics_test.rs +0 -0
  270. {rumdl-0.0.138 → rumdl-0.0.139}/tests/common/cli_test_utils.rs +0 -0
  271. {rumdl-0.0.138 → rumdl-0.0.139}/tests/common/fixtures.rs +0 -0
  272. {rumdl-0.0.138 → rumdl-0.0.139}/tests/common/mod.rs +0 -0
  273. {rumdl-0.0.138 → rumdl-0.0.139}/tests/common/test_utils.rs +0 -0
  274. {rumdl-0.0.138 → rumdl-0.0.139}/tests/commonmark_compliance_tests.rs +0 -0
  275. {rumdl-0.0.138 → rumdl-0.0.139}/tests/comprehensive_integration_tests.rs +0 -0
  276. {rumdl-0.0.138 → rumdl-0.0.139}/tests/comprehensive_output_format_tests.rs +0 -0
  277. {rumdl-0.0.138 → rumdl-0.0.139}/tests/config_application_tests.rs +0 -0
  278. {rumdl-0.0.138 → rumdl-0.0.139}/tests/config_file_command_test.rs +0 -0
  279. {rumdl-0.0.138 → rumdl-0.0.139}/tests/config_tests.rs +0 -0
  280. {rumdl-0.0.138 → rumdl-0.0.139}/tests/config_upward_traversal_test.rs +0 -0
  281. {rumdl-0.0.138 → rumdl-0.0.139}/tests/configuration_inheritance_tests.rs +0 -0
  282. {rumdl-0.0.138 → rumdl-0.0.139}/tests/consistency_regression_tests.rs +0 -0
  283. {rumdl-0.0.138 → rumdl-0.0.139}/tests/cross_platform_compatibility_tests.rs +0 -0
  284. {rumdl-0.0.138 → rumdl-0.0.139}/tests/deeply_nested_lists_performance_test.rs +0 -0
  285. {rumdl-0.0.138 → rumdl-0.0.139}/tests/escaped_brackets_test.rs +0 -0
  286. {rumdl-0.0.138 → rumdl-0.0.139}/tests/final_confidence_assessment.rs +0 -0
  287. {rumdl-0.0.138 → rumdl-0.0.139}/tests/fixable_unfixable_config_test.rs +0 -0
  288. {rumdl-0.0.138 → rumdl-0.0.139}/tests/init_command_test.rs +0 -0
  289. {rumdl-0.0.138 → rumdl-0.0.139}/tests/init_tests.rs +0 -0
  290. {rumdl-0.0.138 → rumdl-0.0.139}/tests/inline_config_blocks_test.rs +0 -0
  291. {rumdl-0.0.138 → rumdl-0.0.139}/tests/inline_config_test.rs +0 -0
  292. {rumdl-0.0.138 → rumdl-0.0.139}/tests/integration_tests.rs +0 -0
  293. {rumdl-0.0.138 → rumdl-0.0.139}/tests/json_output_test.rs +0 -0
  294. {rumdl-0.0.138 → rumdl-0.0.139}/tests/kramdown_integration_test.rs +0 -0
  295. {rumdl-0.0.138 → rumdl-0.0.139}/tests/lib.rs +0 -0
  296. {rumdl-0.0.138 → rumdl-0.0.139}/tests/lsp_editor_integration_tests.rs +0 -0
  297. {rumdl-0.0.138 → rumdl-0.0.139}/tests/lsp_formatting_tests.rs +0 -0
  298. {rumdl-0.0.138 → rumdl-0.0.139}/tests/lsp_initialization_options_test.rs +0 -0
  299. {rumdl-0.0.138 → rumdl-0.0.139}/tests/lsp_integration_tests.rs +0 -0
  300. {rumdl-0.0.138 → rumdl-0.0.139}/tests/lsp_memory_leak_tests.rs +0 -0
  301. {rumdl-0.0.138 → rumdl-0.0.139}/tests/lsp_mkdocs_flavor_test.rs +0 -0
  302. {rumdl-0.0.138 → rumdl-0.0.139}/tests/lsp_tests.rs +0 -0
  303. {rumdl-0.0.138 → rumdl-0.0.139}/tests/malformed_markdown_stress_tests.rs +0 -0
  304. {rumdl-0.0.138 → rumdl-0.0.139}/tests/markdownlint_cli_integration.rs +0 -0
  305. {rumdl-0.0.138 → rumdl-0.0.139}/tests/markdownlint_config_test.rs +0 -0
  306. {rumdl-0.0.138 → rumdl-0.0.139}/tests/markdownlintignore_test.rs +0 -0
  307. {rumdl-0.0.138 → rumdl-0.0.139}/tests/md013_reflow_integration_test.rs +0 -0
  308. {rumdl-0.0.138 → rumdl-0.0.139}/tests/md037_xxxx_regression_test.rs +0 -0
  309. {rumdl-0.0.138 → rumdl-0.0.139}/tests/md051_issue_39_regression_test.rs +0 -0
  310. {rumdl-0.0.138 → rumdl-0.0.139}/tests/nested_code_block_test.rs +0 -0
  311. {rumdl-0.0.138 → rumdl-0.0.139}/tests/output_format_integration_tests.rs +0 -0
  312. {rumdl-0.0.138 → rumdl-0.0.139}/tests/output_format_tests.rs +0 -0
  313. {rumdl-0.0.138 → rumdl-0.0.139}/tests/perf_check.rs +0 -0
  314. {rumdl-0.0.138 → rumdl-0.0.139}/tests/performance_validation_tests.rs +0 -0
  315. {rumdl-0.0.138 → rumdl-0.0.139}/tests/pyproject_config_tests.rs +0 -0
  316. {rumdl-0.0.138 → rumdl-0.0.139}/tests/python_bindings_test.rs +0 -0
  317. {rumdl-0.0.138 → rumdl-0.0.139}/tests/real_world_repository_tests.rs +0 -0
  318. {rumdl-0.0.138 → rumdl-0.0.139}/tests/regression_prevention_tests.rs +0 -0
  319. {rumdl-0.0.138 → rumdl-0.0.139}/tests/rules/emphasis_edge_cases_test.rs +0 -0
  320. {rumdl-0.0.138 → rumdl-0.0.139}/tests/rules/heading_edge_cases_test.rs +0 -0
  321. {rumdl-0.0.138 → rumdl-0.0.139}/tests/rules/inline_content_edge_cases_test.rs +0 -0
  322. {rumdl-0.0.138 → rumdl-0.0.139}/tests/rules/link_edge_cases_test.rs +0 -0
  323. {rumdl-0.0.138 → rumdl-0.0.139}/tests/rules/list_rules_integration_test.rs +0 -0
  324. {rumdl-0.0.138 → rumdl-0.0.139}/tests/rules/md001_test.rs +0 -0
  325. {rumdl-0.0.138 → rumdl-0.0.139}/tests/rules/md001_unicode_test.rs +0 -0
  326. {rumdl-0.0.138 → rumdl-0.0.139}/tests/rules/md002_test.rs +0 -0
  327. {rumdl-0.0.138 → rumdl-0.0.139}/tests/rules/md003_test.rs +0 -0
  328. {rumdl-0.0.138 → rumdl-0.0.139}/tests/rules/md004_test.rs +0 -0
  329. {rumdl-0.0.138 → rumdl-0.0.139}/tests/rules/md005_test.rs +0 -0
  330. {rumdl-0.0.138 → rumdl-0.0.139}/tests/rules/md005_unicode_test.rs +0 -0
  331. {rumdl-0.0.138 → rumdl-0.0.139}/tests/rules/md006_test.rs +0 -0
  332. {rumdl-0.0.138 → rumdl-0.0.139}/tests/rules/md006_unicode_test.rs +0 -0
  333. {rumdl-0.0.138 → rumdl-0.0.139}/tests/rules/md009_test.rs +0 -0
  334. {rumdl-0.0.138 → rumdl-0.0.139}/tests/rules/md010_test.rs +0 -0
  335. {rumdl-0.0.138 → rumdl-0.0.139}/tests/rules/md011_test.rs +0 -0
  336. {rumdl-0.0.138 → rumdl-0.0.139}/tests/rules/md012_test.rs +0 -0
  337. {rumdl-0.0.138 → rumdl-0.0.139}/tests/rules/md013_test.rs +0 -0
  338. {rumdl-0.0.138 → rumdl-0.0.139}/tests/rules/md014_test.rs +0 -0
  339. {rumdl-0.0.138 → rumdl-0.0.139}/tests/rules/md018_test.rs +0 -0
  340. {rumdl-0.0.138 → rumdl-0.0.139}/tests/rules/md019_test.rs +0 -0
  341. {rumdl-0.0.138 → rumdl-0.0.139}/tests/rules/md020_test.rs +0 -0
  342. {rumdl-0.0.138 → rumdl-0.0.139}/tests/rules/md021_test.rs +0 -0
  343. {rumdl-0.0.138 → rumdl-0.0.139}/tests/rules/md022_test.rs +0 -0
  344. {rumdl-0.0.138 → rumdl-0.0.139}/tests/rules/md023_extended_test.rs +0 -0
  345. {rumdl-0.0.138 → rumdl-0.0.139}/tests/rules/md023_test.rs +0 -0
  346. {rumdl-0.0.138 → rumdl-0.0.139}/tests/rules/md024_test.rs +0 -0
  347. {rumdl-0.0.138 → rumdl-0.0.139}/tests/rules/md025_test.rs +0 -0
  348. {rumdl-0.0.138 → rumdl-0.0.139}/tests/rules/md026_kramdown_test.rs +0 -0
  349. {rumdl-0.0.138 → rumdl-0.0.139}/tests/rules/md026_test.rs +0 -0
  350. {rumdl-0.0.138 → rumdl-0.0.139}/tests/rules/md027_test.rs +0 -0
  351. {rumdl-0.0.138 → rumdl-0.0.139}/tests/rules/md028_md009_interaction_test.rs +0 -0
  352. {rumdl-0.0.138 → rumdl-0.0.139}/tests/rules/md028_test.rs +0 -0
  353. {rumdl-0.0.138 → rumdl-0.0.139}/tests/rules/md029_code_block_separation_test.rs +0 -0
  354. {rumdl-0.0.138 → rumdl-0.0.139}/tests/rules/md029_fix_test.rs +0 -0
  355. {rumdl-0.0.138 → rumdl-0.0.139}/tests/rules/md029_issue42_test.rs +0 -0
  356. {rumdl-0.0.138 → rumdl-0.0.139}/tests/rules/md029_markdownlint_parity_test.rs +0 -0
  357. {rumdl-0.0.138 → rumdl-0.0.139}/tests/rules/md029_pathological_edge_cases_test.rs +0 -0
  358. {rumdl-0.0.138 → rumdl-0.0.139}/tests/rules/md029_test.rs +0 -0
  359. {rumdl-0.0.138 → rumdl-0.0.139}/tests/rules/md029_unicode_test.rs +0 -0
  360. {rumdl-0.0.138 → rumdl-0.0.139}/tests/rules/md030_test.rs +0 -0
  361. {rumdl-0.0.138 → rumdl-0.0.139}/tests/rules/md031_kramdown_test.rs +0 -0
  362. {rumdl-0.0.138 → rumdl-0.0.139}/tests/rules/md031_test.rs +0 -0
  363. {rumdl-0.0.138 → rumdl-0.0.139}/tests/rules/md033_extended_test.rs +0 -0
  364. {rumdl-0.0.138 → rumdl-0.0.139}/tests/rules/md033_kramdown_test.rs +0 -0
  365. {rumdl-0.0.138 → rumdl-0.0.139}/tests/rules/md033_test.rs +0 -0
  366. {rumdl-0.0.138 → rumdl-0.0.139}/tests/rules/md034_ipv6_test.rs +0 -0
  367. {rumdl-0.0.138 → rumdl-0.0.139}/tests/rules/md034_test.rs +0 -0
  368. {rumdl-0.0.138 → rumdl-0.0.139}/tests/rules/md035_test.rs +0 -0
  369. {rumdl-0.0.138 → rumdl-0.0.139}/tests/rules/md036_test.rs +0 -0
  370. {rumdl-0.0.138 → rumdl-0.0.139}/tests/rules/md037_kramdown_test.rs +0 -0
  371. {rumdl-0.0.138 → rumdl-0.0.139}/tests/rules/md037_test.rs +0 -0
  372. {rumdl-0.0.138 → rumdl-0.0.139}/tests/rules/md038_nested_backticks_test.rs +0 -0
  373. {rumdl-0.0.138 → rumdl-0.0.139}/tests/rules/md038_test.rs +0 -0
  374. {rumdl-0.0.138 → rumdl-0.0.139}/tests/rules/md039_test.rs +0 -0
  375. {rumdl-0.0.138 → rumdl-0.0.139}/tests/rules/md040_test.rs +0 -0
  376. {rumdl-0.0.138 → rumdl-0.0.139}/tests/rules/md041_test.rs +0 -0
  377. {rumdl-0.0.138 → rumdl-0.0.139}/tests/rules/md042_test.rs +0 -0
  378. {rumdl-0.0.138 → rumdl-0.0.139}/tests/rules/md043_test.rs +0 -0
  379. {rumdl-0.0.138 → rumdl-0.0.139}/tests/rules/md044_test.rs +0 -0
  380. {rumdl-0.0.138 → rumdl-0.0.139}/tests/rules/md045_test.rs +0 -0
  381. {rumdl-0.0.138 → rumdl-0.0.139}/tests/rules/md046_test.rs +0 -0
  382. {rumdl-0.0.138 → rumdl-0.0.139}/tests/rules/md047_test.rs +0 -0
  383. {rumdl-0.0.138 → rumdl-0.0.139}/tests/rules/md048_test.rs +0 -0
  384. {rumdl-0.0.138 → rumdl-0.0.139}/tests/rules/md049_test.rs +0 -0
  385. {rumdl-0.0.138 → rumdl-0.0.139}/tests/rules/md050_test.rs +0 -0
  386. {rumdl-0.0.138 → rumdl-0.0.139}/tests/rules/md051_comprehensive_test.rs +0 -0
  387. {rumdl-0.0.138 → rumdl-0.0.139}/tests/rules/md051_critical_edge_cases_test.rs +0 -0
  388. {rumdl-0.0.138 → rumdl-0.0.139}/tests/rules/md051_issue_39_regression_test.rs +0 -0
  389. {rumdl-0.0.138 → rumdl-0.0.139}/tests/rules/md051_performance_edge_cases_test.rs +0 -0
  390. {rumdl-0.0.138 → rumdl-0.0.139}/tests/rules/md051_property_based_test.rs +0 -0
  391. {rumdl-0.0.138 → rumdl-0.0.139}/tests/rules/md051_regression_prevention_test.rs +0 -0
  392. {rumdl-0.0.138 → rumdl-0.0.139}/tests/rules/md051_test.rs +0 -0
  393. {rumdl-0.0.138 → rumdl-0.0.139}/tests/rules/md051_unicode_security_test.rs +0 -0
  394. {rumdl-0.0.138 → rumdl-0.0.139}/tests/rules/md053_additional_test.rs +0 -0
  395. {rumdl-0.0.138 → rumdl-0.0.139}/tests/rules/md053_proptest.rs +0 -0
  396. {rumdl-0.0.138 → rumdl-0.0.139}/tests/rules/md054_test.rs +0 -0
  397. {rumdl-0.0.138 → rumdl-0.0.139}/tests/rules/md054_unicode_test.rs +0 -0
  398. {rumdl-0.0.138 → rumdl-0.0.139}/tests/rules/md055_test.rs +0 -0
  399. {rumdl-0.0.138 → rumdl-0.0.139}/tests/rules/md056_test.rs +0 -0
  400. {rumdl-0.0.138 → rumdl-0.0.139}/tests/rules/md057_test.rs +0 -0
  401. {rumdl-0.0.138 → rumdl-0.0.139}/tests/rules/md058_kramdown_test.rs +0 -0
  402. {rumdl-0.0.138 → rumdl-0.0.139}/tests/rules/md058_test.rs +0 -0
  403. {rumdl-0.0.138 → rumdl-0.0.139}/tests/rules/mkdocs_admonitions_test.rs +0 -0
  404. {rumdl-0.0.138 → rumdl-0.0.139}/tests/rules/mkdocs_edge_cases_test.rs +0 -0
  405. {rumdl-0.0.138 → rumdl-0.0.139}/tests/rules/mkdocs_extensions_test.rs +0 -0
  406. {rumdl-0.0.138 → rumdl-0.0.139}/tests/rules/mkdocs_snippets_test.rs +0 -0
  407. {rumdl-0.0.138 → rumdl-0.0.139}/tests/rules/mod.rs +0 -0
  408. {rumdl-0.0.138 → rumdl-0.0.139}/tests/rules/rule_interaction_test.rs +0 -0
  409. {rumdl-0.0.138 → rumdl-0.0.139}/tests/rules_mod_test.rs +0 -0
  410. {rumdl-0.0.138 → rumdl-0.0.139}/tests/skip_context_tests.rs +0 -0
  411. {rumdl-0.0.138 → rumdl-0.0.139}/tests/test_underscore_edge_cases.rs +0 -0
  412. {rumdl-0.0.138 → rumdl-0.0.139}/tests/thread_safety_tests.rs +0 -0
  413. {rumdl-0.0.138 → rumdl-0.0.139}/tests/unfixable_rules_test.rs +0 -0
  414. {rumdl-0.0.138 → rumdl-0.0.139}/tests/unicode_edge_case_tests.rs +0 -0
  415. {rumdl-0.0.138 → rumdl-0.0.139}/tests/utils/blockquote_utils_test.rs +0 -0
  416. {rumdl-0.0.138 → rumdl-0.0.139}/tests/utils/code_block_utils_extended_test.rs +0 -0
  417. {rumdl-0.0.138 → rumdl-0.0.139}/tests/utils/code_block_utils_test.rs +0 -0
  418. {rumdl-0.0.138 → rumdl-0.0.139}/tests/utils/core_utils_test.rs +0 -0
  419. {rumdl-0.0.138 → rumdl-0.0.139}/tests/utils/front_matter_utils_test.rs +0 -0
  420. {rumdl-0.0.138 → rumdl-0.0.139}/tests/utils/line_index_test.rs +0 -0
  421. {rumdl-0.0.138 → rumdl-0.0.139}/tests/utils/mod.rs +0 -0
  422. {rumdl-0.0.138 → rumdl-0.0.139}/tests/utils_markdown_edge_cases.rs +0 -0
  423. {rumdl-0.0.138 → rumdl-0.0.139}/tests/utils_tests.rs +0 -0
  424. {rumdl-0.0.138 → rumdl-0.0.139}/tests/vscode_extension_fixes.rs +0 -0
  425. {rumdl-0.0.138 → rumdl-0.0.139}/tests/vscode_test.rs +0 -0
  426. {rumdl-0.0.138 → rumdl-0.0.139}/tests/vscode_tests.rs +0 -0
  427. {rumdl-0.0.138 → rumdl-0.0.139}/tests/vscode_windows_comprehensive_test.rs +0 -0
  428. {rumdl-0.0.138 → rumdl-0.0.139}/tests/vscode_windows_test.rs +0 -0
@@ -7,9 +7,35 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
+ ## [0.0.139] - 2025-09-09
11
+
12
+ ### Fixed
13
+
14
+ - **UTF-8 Handling**: Fixed panic when processing files with multi-byte UTF-8 characters (fixes #85)
15
+ - Added proper character boundary checking in code block detection
16
+ - Prevents string slicing panics with German umlauts (ä, ö, ü) and other multi-byte characters
17
+ - Added comprehensive test coverage for various international scripts
18
+
19
+ - **MD038**: Fixed false positives caused by escaped backticks (fixes #77)
20
+ - Escaped backticks (`\``) no longer create phantom code spans
21
+ - Implemented two-pass algorithm to properly handle escaped characters
22
+ - Reduced false positive count from 179 to 0 in affected documents
23
+
24
+ - **MD032**: Improved markdownlint compatibility and edge case detection (fixes #77)
25
+ - Changed default configuration to match markdownlint (no blank lines around lists in blockquotes)
26
+ - Added detection for ordered lists starting with numbers other than 1
27
+ - Better compliance with CommonMark specification for list formatting
28
+
29
+ - **Code Block Detection**: Fixed critical bug where lines after code blocks were marked as inside them
30
+ - Corrected fenced code block end position to include the newline after closing fence
31
+ - Prevented code span detection from running inside fenced code blocks
32
+ - Fixed MD051 false positives where headings after code blocks weren't detected
33
+ - Eliminated invalid overlapping code spans that caused parsing errors
34
+
10
35
  ## [0.0.138] - 2025-09-05
11
36
 
12
37
  ### Fixed
38
+
13
39
  - **LSP**: Fixed formatting to return empty array instead of null when no edits available (fixes #79)
14
40
  - Helix editor now properly receives LSP formatting responses
15
41
  - Added textDocument/rangeFormatting support for better editor compatibility
@@ -18,6 +44,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
18
44
  ## [0.0.137] - 2025-09-04
19
45
 
20
46
  ### Fixed
47
+
21
48
  - **MD051**: Fixed GitHub anchor generation for headers with arrow patterns (fixes #82)
22
49
  - Headers like `WAL->L0 Compaction` now correctly generate `#wal-l0-compaction` anchors
23
50
  - Arrow patterns (`->`, `-->`) now convert to the correct number of hyphens based on surrounding spaces
@@ -29,12 +56,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
29
56
  ## [0.0.134] - 2025-09-02
30
57
 
31
58
  ### Added
59
+
32
60
  - **MD051**: HTML anchor tag support for any element with id/name attributes
33
61
  - Supports `<a>`, `<span>`, `<div>` and any other HTML element with id attribute
34
62
  - Case-sensitive matching for HTML anchors (case-insensitive for Markdown)
35
63
  - Handles multiple id attributes (only first is used per HTML spec)
36
64
 
37
65
  ### Fixed
66
+
38
67
  - **MD007**: Implemented proper indentation style configuration for markdownlint compatibility
39
68
  - Added IndentStyle enum with TextAligned (default) and Fixed (markdownlint) modes
40
69
  - Auto-configures style="fixed" when loading from .markdownlint.yaml files
@@ -60,6 +89,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
60
89
  ## [0.0.133] - 2025-08-30
61
90
 
62
91
  ### Fixed
92
+
63
93
  - **MD028/MD009**: Complete fix for rule conflict where MD028 and MD009 were "fighting each other" (fixes #66)
64
94
  - MD028 now only flags truly blank lines inside blockquotes, not `>` or `> ` lines
65
95
  - MD009 simplified to remove special cases for empty blockquote lines
@@ -68,17 +98,20 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
68
98
  ## [0.0.132] - 2025-08-30
69
99
 
70
100
  ### Added
101
+
71
102
  - **LSP**: Added "Fix all rumdl issues" code action for bulk fixes when multiple fixable diagnostics are present
72
103
 
73
104
  ## [0.0.131] - 2025-08-28
74
105
 
75
106
  ### Fixed
107
+
76
108
  - **MD002**: Implemented markdownlint compatibility - MD002 no longer triggers when first heading is on the first line, regardless of level (fixes #65)
77
109
  - **MD034**: Added support for multi-line MkDocs snippet blocks where markers appear on separate lines (fixes #70)
78
110
 
79
111
  ## [0.0.130] - 2025-08-27
80
112
 
81
113
  ### Fixed
114
+
82
115
  - **MD052**: Fixed false positives with IPv6 URLs containing brackets (e.g., `http://[::1]:8080/path[0]`)
83
116
  - **MD053**: Made rule warning-only, removed automatic fixes to prevent accidental removal of intentionally kept references (fixes #69)
84
117
  - **MD009/MD028**: Resolved formatting loop between trailing spaces and blank blockquote lines
@@ -89,6 +122,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
89
122
  ## [0.0.129] - 2025-08-26
90
123
 
91
124
  ### Added
125
+
92
126
  - **MkDocs Extended Support**: Enhanced MkDocs compatibility with PyMdown Extensions
93
127
  - Snippets syntax (`--8<--`) support (fixes #62)
94
128
  - Admonitions (`!!!`, `???`, `???+`) for collapsible note blocks
@@ -97,17 +131,20 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
97
131
  - Cross-references and auto-doc blocks
98
132
 
99
133
  ### Fixed
134
+
100
135
  - **MkDocs Validation**: Made validation more lenient to detect malformed syntax
101
136
  - **Configuration Migration**: Fixed migration of multiple disabled rules from markdownlint config
102
137
 
103
138
  ## [0.0.128] - 2025-08-25
104
139
 
105
140
  ### Fixed
141
+
106
142
  - **MD042/MD052**: Added support for simple identifiers in MkDocs auto-references
107
143
 
108
144
  ## [0.0.127] - 2025-08-25
109
145
 
110
146
  ### Added
147
+
111
148
  - **MkDocs Support**: Added MkDocs markdown flavor (closes #63)
112
149
  - New `flavor = "mkdocs"` configuration option
113
150
  - MkDocs auto-references (e.g., `[class.Name][]`, `[module.function][]`) are no longer flagged as errors
@@ -115,21 +152,25 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
115
152
  - Type-safe enum implementation for better extensibility
116
153
 
117
154
  ### Fixed
155
+
118
156
  - **MD005**: Dynamic indent detection to respect user's chosen pattern (fixes #64)
119
157
  - Analyzes existing document to detect 2-space vs 4-space indentation
120
158
  - Preserves user's indentation style instead of forcing a default
121
159
 
122
160
  ### Changed
161
+
123
162
  - **Configuration**: Renamed MD013 'enable_reflow' to 'reflow' with backwards compatibility
124
163
 
125
164
  ## [0.0.126] - 2025-08-23
126
165
 
127
166
  ### Fixed
167
+
128
168
  - **Build**: Fixed output filename collision warning during `cargo install` (#61)
129
169
 
130
170
  ## [0.0.125] - 2025-08-22
131
171
 
132
172
  ### Added
173
+
133
174
  - **CLI**: Added `--stdin-filename` flag for better stdin processing
134
175
  - Specify filename when reading from stdin for better error messages
135
176
  - Enables MD057 (relative link checking) to work correctly with stdin
@@ -137,6 +178,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
137
178
  - Improves editor integration capabilities
138
179
 
139
180
  ### Fixed
181
+
140
182
  - **CLI**: Fixed `rumdl fmt -` to output original content when no issues found
141
183
  - Previously incorrectly output "No issues found in stdin" message
142
184
  - Now correctly outputs the original content unchanged
@@ -145,12 +187,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
145
187
  - Better markdownlint compatibility
146
188
 
147
189
  ### Changed
190
+
148
191
  - **Build**: Added mise version validation to pre-release checks
149
192
  - Prevents CI failures from non-existent mise versions
150
193
 
151
194
  ## [0.0.124] - 2025-08-22
152
195
 
153
196
  ### Added
197
+
154
198
  - **Formatting**: Added stdin/stdout formatting support (closes #59)
155
199
  - `rumdl fmt` command for formatting markdown files (alias for `check --fix`)
156
200
  - `--stdin` with `--fix` now outputs formatted content to stdout
@@ -159,6 +203,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
159
203
  - Documentation updated with formatting examples
160
204
 
161
205
  ### Fixed
206
+
162
207
  - **MD052**: Don't flag GitHub alerts as undefined references (closes #60)
163
208
  - GitHub alert syntax (`[!NOTE]`, `[!TIP]`, `[!WARNING]`, `[!IMPORTANT]`, `[!CAUTION]`) no longer flagged
164
209
  - Improved compatibility with GitHub-flavored markdown
@@ -170,11 +215,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
170
215
  ## [0.0.123] - 2025-08-21
171
216
 
172
217
  ### Added
218
+
173
219
  - **MD013**: Comprehensive markdown pattern preservation during text reflow
174
220
  - Preserves reference links, footnotes, math formulas, wiki links, and more
175
221
  - Centralized regex patterns for better maintainability
176
222
 
177
223
  ### Fixed
224
+
178
225
  - **CLI**: Correct unfixable rules status display and fix counts (closes #56)
179
226
  - Rules marked as unfixable now show `[unfixable]` in yellow instead of `[fixed]`
180
227
  - Fix count now correctly excludes unfixable rules (e.g., "3 of 6" instead of "6 of 6")
@@ -185,6 +232,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
185
232
  - **Tests**: Mark kramdown definition list doctest as text to fix test failures
186
233
 
187
234
  ### Changed
235
+
188
236
  - **Internal**: Centralized markdown pattern regexes and extended reflow support
189
237
  - Improved code organization and reduced duplication
190
238
  - Better performance through shared regex compilation
@@ -192,8 +240,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
192
240
  ## [0.0.122] - 2025-08-19
193
241
 
194
242
  ### Added
243
+
195
244
  - **Configuration Discovery**: Automatic upward directory traversal to find configuration files (closes #58)
196
- - Searches parent directories for `.rumdl.toml`, `rumdl.toml`, or `pyproject.toml`
245
+ - Searches parent directories for `.rumdl.toml`, `rumdl.toml`, or `pyproject.toml`
197
246
  - Similar behavior to `git`, `ruff`, and `eslint`
198
247
  - Stops at `.git` directory boundaries
199
248
  - **--isolated flag**: New flag to disable all configuration discovery (Ruff-compatible)
@@ -202,6 +251,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
202
251
  ## [0.0.121] - 2025-08-19
203
252
 
204
253
  ### Fixed
254
+
205
255
  - **MD051**: Resolved remaining Issue #39 edge cases for link fragment validation
206
256
  - Fixed ampersand handling at boundaries: "& text" → "--text", "text &" → "text-"
207
257
  - Fixed cross-file link detection to properly ignore absolute paths (e.g., `/tags#anchor`)
@@ -210,6 +260,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
210
260
  - Verified Jekyll/kramdown GFM underscore handling works correctly for technical identifiers
211
261
 
212
262
  ### Improved
263
+
213
264
  - **MD051**: Enhanced anchor generation accuracy and security
214
265
  - Added comprehensive security hardening (Unicode normalization, RTL/LTR override prevention)
215
266
  - Improved emoji detection and boundary handling
@@ -219,17 +270,20 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
219
270
  ## [0.0.120] - 2025-08-16
220
271
 
221
272
  ### Performance
273
+
222
274
  - Incremental improvements to various rule implementations
223
275
 
224
276
  ## [0.0.119] - 2025-08-15
225
277
 
226
278
  ### Fixed
279
+
227
280
  - **MD051**: Fixed GitHub anchor generation algorithm to correctly handle consecutive spaces
228
281
  - "Test & Heading!" now correctly generates "test--heading" instead of "test-heading"
229
282
  - Improved compliance with GitHub's official anchor generation behavior
230
283
  - Fixed whitespace normalization bug that was collapsing multiple spaces to single spaces
231
284
 
232
285
  ### Improved
286
+
233
287
  - **Code Quality**: Removed all `#[allow(dead_code)]` violations in codebase
234
288
  - Removed unused `InternalCodeBlockState` enum from document_structure.rs
235
289
  - Removed unused `extract_url_from_link` function from md057_existing_relative_links.rs
@@ -238,11 +292,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
238
292
  ## [0.0.118] - 2025-08-14
239
293
 
240
294
  ### Performance
295
+
241
296
  - Incremental improvements to various rule implementations
242
297
 
243
298
  ## [0.0.117] - 2025-08-14
244
299
 
245
300
  ### Fixed
301
+
246
302
  - MD037: Fixed false positive with asterisks in inline code spans (issue #49)
247
303
  - Inline code content is now properly masked before emphasis detection
248
304
  - MD011: Fixed false positive with array access patterns in link titles (issue #50)
@@ -254,6 +310,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
254
310
  ## [0.0.116] - 2025-08-13
255
311
 
256
312
  ### Added
313
+
257
314
  - Kramdown-style custom header IDs support (#44)
258
315
  - Headers can now have custom IDs using the `{#custom-id}` syntax
259
316
  - Custom IDs are preserved when fixing MD051 (link fragments)
@@ -262,37 +319,44 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
262
319
  - Rejects problematic characters like spaces, quotes, brackets, and HTML/CSS special chars
263
320
 
264
321
  ### Fixed
322
+
265
323
  - Pre-release script now correctly handles dynamic versioning in pyproject.toml
266
324
  - Added Cargo.lock validation and `cargo publish --dry-run` checks to prevent release failures
267
325
 
268
326
  ## [0.0.115] - 2025-08-12
269
327
 
270
328
  ### Fixed
329
+
271
330
  - Various bug fixes and improvements
272
331
 
273
332
  ## [0.0.114] - 2025-08-09
274
333
 
275
334
  ### Fixed
335
+
276
336
  - Various bug fixes and improvements
277
337
 
278
338
  ## [0.0.113] - 2025-08-09
279
339
 
280
340
  ### Fixed
341
+
281
342
  - Various bug fixes and improvements
282
343
 
283
344
  ## [0.0.112] - 2025-08-08
284
345
 
285
346
  ### Fixed
347
+
286
348
  - Various bug fixes and improvements
287
349
 
288
350
  ## [0.0.110] - 2025-08-08
289
351
 
290
352
  ### Changed
353
+
291
354
  - Various bug fixes and improvements
292
355
 
293
356
  ## [0.0.107] - 2025-08-06
294
357
 
295
358
  ### Fixed
359
+
296
360
  - MD036: Remove automatic fix to prevent document corruption when bold/italic text is used as image captions, labels, or warnings (#23)
297
361
  - MD011: No longer flags patterns like `()[1]` inside inline code as reversed links (#19)
298
362
  - MD052: No longer flags reference patterns inside HTML comments as undefined references (#20)
@@ -300,6 +364,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
300
364
  ## [0.0.106] - 2025-08-05
301
365
 
302
366
  ### Changed
367
+
303
368
  - Moved benchmark binaries from Python package distribution
304
369
  - Benchmark tools are now in `benchmark/bin/` directory
305
370
  - Added `build-benchmarks` feature flag to explicitly build benchmarks
@@ -309,6 +374,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
309
374
  ## [0.0.105] - 2025-08-05
310
375
 
311
376
  ### Fixed
377
+
312
378
  - MD029: Fixed list continuation detection to properly handle variable marker widths (fixes #16)
313
379
  - List items with double-digit markers (e.g., "10. ") now correctly require 4+ spaces for continuation
314
380
  - List items with triple-digit markers (e.g., "100. ") now correctly require 5+ spaces for continuation
@@ -317,23 +383,27 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
317
383
  - Installation: Improved update experience for Cursor/Windsurf editors
318
384
 
319
385
  ### Added
386
+
320
387
  - `--update` flag to check for newer versions and update if available
321
388
  - Version checking with update notifications
322
389
  - Marketplace-aware installation for VS Code forks
323
390
  - Comprehensive tests for MD029 with large number markers (triple and quadruple digits)
324
391
 
325
392
  ### Changed
393
+
326
394
  - Clarified `--force` flag behavior in help text
327
395
 
328
396
  ## [0.0.104] - 2025-08-02
329
397
 
330
398
  ### Added
399
+
331
400
  - File-wide inline configuration support with `disable-file`, `enable-file`, and `configure-file` comments
332
401
  - Support for JSON configuration within inline comments to customize rule behavior per file
333
402
  - Enhanced inline configuration to handle edge cases with multiple comments on the same line
334
403
  - Support for enabling specific rules when all rules are disabled
335
404
 
336
405
  ### Fixed
406
+
337
407
  - Process inline configuration comments in order of appearance on the same line
338
408
  - Skip processing inline configuration comments inside code blocks
339
409
 
@@ -344,6 +414,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
344
414
  ## [0.0.100] - 2025-07-22
345
415
 
346
416
  ### Performance Improvements
417
+
347
418
  - **MD032**: Eliminated redundant DocumentStructure creation through optimization interface delegation
348
419
  - Refactored check() method to delegate to check_with_structure() for shared parsing
349
420
  - Added fix_with_structure() helper method for optimized fixing operations
@@ -357,6 +428,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
357
428
  - Added memory stress testing to prevent performance regressions
358
429
 
359
430
  ### Code Quality
431
+
360
432
  - Improved separation of concerns in list processing logic
361
433
  - Enhanced code maintainability through better structured algorithms
362
434
  - Added comprehensive test coverage for pathological markdown structures
@@ -364,6 +436,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
364
436
  ## [0.0.99] - 2025-07-22
365
437
 
366
438
  ### Fixed
439
+
367
440
  - MD034: Added support for `ftps://` URLs
368
441
  - MD034: Fixed detection of URLs in HTML comments (now properly ignored)
369
442
  - MD039: Fixed escaped character handling in link text
@@ -375,6 +448,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
375
448
  ## [0.0.98] - 2025-07-18
376
449
 
377
450
  ### Added
451
+
378
452
  - Homebrew tap support for easy installation on macOS and Linux
379
453
  - Created `homebrew-rumdl` tap repository
380
454
  - Added automatic archive creation for macOS builds in release workflow
@@ -383,12 +457,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
383
457
  - Homebrew installation instructions in README
384
458
 
385
459
  ### Changed
460
+
386
461
  - Enhanced release workflow to create platform-specific tar.gz archives
387
462
  - Added repository dispatch to notify homebrew-rumdl on new releases
388
463
 
389
464
  ## [0.0.97] - 2025-07-17
390
465
 
391
466
  ### Changed
467
+
392
468
  - Updated exit code handling for consistency:
393
469
  - Configuration errors now return exit code 2 (was 1)
394
470
  - File not found errors now return exit code 2 (was 1)
@@ -398,12 +474,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
398
474
  - Exit code 2: Tool errors (config parse errors, file not found, invalid arguments)
399
475
 
400
476
  ### Fixed
477
+
401
478
  - Improved consistency in exit code handling across the entire codebase
402
479
  - Updated all tests to expect correct exit codes for different error scenarios
403
480
 
404
481
  ## [0.0.96] - 2025-07-16
405
482
 
406
483
  ### Added
484
+
407
485
  - MD013: Text reflow/wrapping functionality for automatic line breaking (fixes #13)
408
486
  - New `enable_reflow` configuration option (disabled by default)
409
487
  - Intelligently wraps long lines while preserving Markdown formatting
@@ -415,14 +493,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
415
493
  - Comprehensive test coverage for text reflow functionality
416
494
 
417
495
  ### Changed
496
+
418
497
  - MD013: Enhanced fix functionality with optional text reflow (opt-in feature)
419
498
 
420
499
  ### Fixed
500
+
421
501
  - MD013: Fixed list indentation to properly align continuation lines with the text content
422
502
 
423
503
  ## [0.0.95] - 2025-07-15
424
504
 
425
505
  ### Added
506
+
426
507
  - Implemented 3-tier exit code system following Ruff's convention:
427
508
  - Exit code 0: Success (no issues found)
428
509
  - Exit code 1: Linting violations found
@@ -430,16 +511,19 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
430
511
  - Added exit_codes module for cleaner exit code management
431
512
 
432
513
  ### Changed
514
+
433
515
  - Updated all error handlers to use appropriate exit codes
434
516
  - CI/CD systems can now distinguish between markdown issues (exit 1) and tool failures (exit 2)
435
517
 
436
518
  ### Documentation
519
+
437
520
  - Updated README with exit code documentation
438
521
  - Added exit codes section to CLI reference
439
522
 
440
523
  ## [0.0.94] - 2025-07-04
441
524
 
442
525
  ### Performance Improvements
526
+
443
527
  - Implemented lazy code span loading - 3.8x speedup for 94% of rules that don't use code spans
444
528
  - MD013: 34.5% faster check operations through aggressive early returns
445
529
  - MD038: 14% faster by leveraging lazy code span loading
@@ -449,6 +533,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
449
533
  - Overall LintContext creation improved by 11.7%
450
534
 
451
535
  ### Fixed
536
+
452
537
  - MD053: Fixed escaped character handling in reference definitions
453
538
 
454
539
  ## [0.0.93] - 2025-07-03