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