rumdl 0.0.142__tar.gz → 0.0.144__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 (438) hide show
  1. {rumdl-0.0.142 → rumdl-0.0.144}/CHANGELOG.md +4 -1
  2. {rumdl-0.0.142 → rumdl-0.0.144}/Cargo.lock +50 -9
  3. {rumdl-0.0.142 → rumdl-0.0.144}/Cargo.toml +7 -1
  4. {rumdl-0.0.142 → rumdl-0.0.144}/PKG-INFO +1 -1
  5. {rumdl-0.0.142 → rumdl-0.0.144}/docs/global-settings.md +14 -0
  6. {rumdl-0.0.142 → rumdl-0.0.144}/docs/md005.md +1 -0
  7. {rumdl-0.0.142 → rumdl-0.0.144}/docs/md013.md +70 -5
  8. {rumdl-0.0.142 → rumdl-0.0.144}/docs/md018.md +1 -0
  9. {rumdl-0.0.142 → rumdl-0.0.144}/docs/md020.md +1 -0
  10. {rumdl-0.0.142 → rumdl-0.0.144}/docs/md021.md +1 -0
  11. {rumdl-0.0.142 → rumdl-0.0.144}/docs/md022.md +1 -0
  12. {rumdl-0.0.142 → rumdl-0.0.144}/docs/md025.md +1 -0
  13. {rumdl-0.0.142 → rumdl-0.0.144}/docs/md026.md +1 -0
  14. {rumdl-0.0.142 → rumdl-0.0.144}/docs/md029.md +1 -0
  15. {rumdl-0.0.142 → rumdl-0.0.144}/docs/md030.md +1 -0
  16. {rumdl-0.0.142 → rumdl-0.0.144}/docs/md031.md +1 -0
  17. {rumdl-0.0.142 → rumdl-0.0.144}/docs/md032.md +1 -0
  18. {rumdl-0.0.142 → rumdl-0.0.144}/docs/md033.md +1 -0
  19. {rumdl-0.0.142 → rumdl-0.0.144}/docs/md037.md +1 -0
  20. {rumdl-0.0.142 → rumdl-0.0.144}/docs/md038.md +1 -0
  21. {rumdl-0.0.142 → rumdl-0.0.144}/docs/md039.md +1 -0
  22. {rumdl-0.0.142 → rumdl-0.0.144}/docs/md041.md +1 -0
  23. {rumdl-0.0.142 → rumdl-0.0.144}/docs/md042.md +1 -0
  24. {rumdl-0.0.142 → rumdl-0.0.144}/docs/md043.md +1 -0
  25. {rumdl-0.0.142 → rumdl-0.0.144}/docs/md044.md +1 -0
  26. {rumdl-0.0.142 → rumdl-0.0.144}/docs/md045.md +1 -0
  27. {rumdl-0.0.142 → rumdl-0.0.144}/docs/md046.md +3 -0
  28. {rumdl-0.0.142 → rumdl-0.0.144}/docs/md047.md +1 -0
  29. {rumdl-0.0.142 → rumdl-0.0.144}/src/lint_context.rs +200 -141
  30. {rumdl-0.0.142 → rumdl-0.0.144}/src/main.rs +70 -4
  31. {rumdl-0.0.142 → rumdl-0.0.144}/src/markdownlint_config.rs +41 -26
  32. {rumdl-0.0.142 → rumdl-0.0.144}/src/rules/md013_line_length/md013_config.rs +2 -0
  33. {rumdl-0.0.142 → rumdl-0.0.144}/src/rules/md013_line_length.rs +306 -128
  34. {rumdl-0.0.142 → rumdl-0.0.144}/src/rules/md028_no_blanks_blockquote.rs +70 -32
  35. {rumdl-0.0.142 → rumdl-0.0.144}/src/rules/md030_list_marker_space.rs +48 -20
  36. {rumdl-0.0.142 → rumdl-0.0.144}/src/rules/md034_no_bare_urls.rs +36 -32
  37. {rumdl-0.0.142 → rumdl-0.0.144}/src/rules/md038_no_space_in_code.rs +1 -1
  38. {rumdl-0.0.142 → rumdl-0.0.144}/src/rules/md042_no_empty_links.rs +17 -2
  39. {rumdl-0.0.142 → rumdl-0.0.144}/src/rules/md051_link_fragments.rs +52 -41
  40. {rumdl-0.0.142 → rumdl-0.0.144}/src/rules/md052_reference_links_images.rs +27 -0
  41. {rumdl-0.0.142 → rumdl-0.0.144}/src/utils/code_block_utils.rs +25 -90
  42. {rumdl-0.0.142 → rumdl-0.0.144}/src/utils/text_reflow.rs +266 -0
  43. rumdl-0.0.144/tests/fix_performance_baseline_test.rs +282 -0
  44. {rumdl-0.0.142 → rumdl-0.0.144}/tests/md051_readme_bug_test.rs +8 -10
  45. {rumdl-0.0.142 → rumdl-0.0.144}/tests/rules/md042_test.rs +6 -5
  46. rumdl-0.0.144/tests/sentence_per_line_test.rs +111 -0
  47. {rumdl-0.0.142 → rumdl-0.0.144}/.config/nextest.toml +0 -0
  48. {rumdl-0.0.142 → rumdl-0.0.144}/.mise.toml +0 -0
  49. {rumdl-0.0.142 → rumdl-0.0.144}/.pre-commit-config.yaml +0 -0
  50. {rumdl-0.0.142 → rumdl-0.0.144}/.rumdl.toml +0 -0
  51. {rumdl-0.0.142 → rumdl-0.0.144}/.rustfmt.toml +0 -0
  52. {rumdl-0.0.142 → rumdl-0.0.144}/LICENSE +0 -0
  53. {rumdl-0.0.142 → rumdl-0.0.144}/MANIFEST.in +0 -0
  54. {rumdl-0.0.142 → rumdl-0.0.144}/Makefile +0 -0
  55. {rumdl-0.0.142 → rumdl-0.0.144}/README.md +0 -0
  56. {rumdl-0.0.142 → rumdl-0.0.144}/assets/logo.png +0 -0
  57. {rumdl-0.0.142 → rumdl-0.0.144}/benches/fix_performance.rs +0 -0
  58. {rumdl-0.0.142 → rumdl-0.0.144}/benches/range_performance.rs +0 -0
  59. {rumdl-0.0.142 → rumdl-0.0.144}/benches/range_utils_benchmark.rs +0 -0
  60. {rumdl-0.0.142 → rumdl-0.0.144}/benches/rule_performance.rs +0 -0
  61. {rumdl-0.0.142 → rumdl-0.0.144}/benches/simple_fix_bench.rs +0 -0
  62. {rumdl-0.0.142 → rumdl-0.0.144}/benchmark/bin/bench_lint_context.rs +0 -0
  63. {rumdl-0.0.142 → rumdl-0.0.144}/benchmark/bin/benchmark.rs +0 -0
  64. {rumdl-0.0.142 → rumdl-0.0.144}/benchmark/bin/benchmark_rule.rs +0 -0
  65. {rumdl-0.0.142 → rumdl-0.0.144}/benchmark/bin/file_parallel_benchmark.rs +0 -0
  66. {rumdl-0.0.142 → rumdl-0.0.144}/benchmark/bin/measure_code_span_performance.rs +0 -0
  67. {rumdl-0.0.142 → rumdl-0.0.144}/docs/RULES.md +0 -0
  68. {rumdl-0.0.142 → rumdl-0.0.144}/docs/inline-configuration.md +0 -0
  69. {rumdl-0.0.142 → rumdl-0.0.144}/docs/md001.md +0 -0
  70. {rumdl-0.0.142 → rumdl-0.0.144}/docs/md002.md +0 -0
  71. {rumdl-0.0.142 → rumdl-0.0.144}/docs/md003.md +0 -0
  72. {rumdl-0.0.142 → rumdl-0.0.144}/docs/md004.md +0 -0
  73. {rumdl-0.0.142 → rumdl-0.0.144}/docs/md006.md +0 -0
  74. {rumdl-0.0.142 → rumdl-0.0.144}/docs/md007.md +0 -0
  75. {rumdl-0.0.142 → rumdl-0.0.144}/docs/md009.md +0 -0
  76. {rumdl-0.0.142 → rumdl-0.0.144}/docs/md010.md +0 -0
  77. {rumdl-0.0.142 → rumdl-0.0.144}/docs/md011.md +0 -0
  78. {rumdl-0.0.142 → rumdl-0.0.144}/docs/md012.md +0 -0
  79. {rumdl-0.0.142 → rumdl-0.0.144}/docs/md014.md +0 -0
  80. {rumdl-0.0.142 → rumdl-0.0.144}/docs/md019.md +0 -0
  81. {rumdl-0.0.142 → rumdl-0.0.144}/docs/md023.md +0 -0
  82. {rumdl-0.0.142 → rumdl-0.0.144}/docs/md024.md +0 -0
  83. {rumdl-0.0.142 → rumdl-0.0.144}/docs/md027.md +0 -0
  84. {rumdl-0.0.142 → rumdl-0.0.144}/docs/md028.md +0 -0
  85. {rumdl-0.0.142 → rumdl-0.0.144}/docs/md034.md +0 -0
  86. {rumdl-0.0.142 → rumdl-0.0.144}/docs/md035.md +0 -0
  87. {rumdl-0.0.142 → rumdl-0.0.144}/docs/md036.md +0 -0
  88. {rumdl-0.0.142 → rumdl-0.0.144}/docs/md040.md +0 -0
  89. {rumdl-0.0.142 → rumdl-0.0.144}/docs/md048.md +0 -0
  90. {rumdl-0.0.142 → rumdl-0.0.144}/docs/md049.md +0 -0
  91. {rumdl-0.0.142 → rumdl-0.0.144}/docs/md050.md +0 -0
  92. {rumdl-0.0.142 → rumdl-0.0.144}/docs/md051.md +0 -0
  93. {rumdl-0.0.142 → rumdl-0.0.144}/docs/md052.md +0 -0
  94. {rumdl-0.0.142 → rumdl-0.0.144}/docs/md053.md +0 -0
  95. {rumdl-0.0.142 → rumdl-0.0.144}/docs/md054.md +0 -0
  96. {rumdl-0.0.142 → rumdl-0.0.144}/docs/md055.md +0 -0
  97. {rumdl-0.0.142 → rumdl-0.0.144}/docs/md056.md +0 -0
  98. {rumdl-0.0.142 → rumdl-0.0.144}/docs/md057.md +0 -0
  99. {rumdl-0.0.142 → rumdl-0.0.144}/docs/md058.md +0 -0
  100. {rumdl-0.0.142 → rumdl-0.0.144}/docs/vscode-extension.md +0 -0
  101. {rumdl-0.0.142 → rumdl-0.0.144}/parity_check.py +0 -0
  102. {rumdl-0.0.142 → rumdl-0.0.144}/pyproject.toml +0 -0
  103. {rumdl-0.0.142 → rumdl-0.0.144}/python/MANIFEST.in +0 -0
  104. {rumdl-0.0.142 → rumdl-0.0.144}/python/PYTHON-README.md +0 -0
  105. {rumdl-0.0.142 → rumdl-0.0.144}/python/rumdl/__init__.py +0 -0
  106. {rumdl-0.0.142 → rumdl-0.0.144}/python/rumdl/__main__.py +0 -0
  107. {rumdl-0.0.142 → rumdl-0.0.144}/python/rumdl/py.typed +0 -0
  108. {rumdl-0.0.142 → rumdl-0.0.144}/rumdl.toml.example +0 -0
  109. {rumdl-0.0.142 → rumdl-0.0.144}/rust-toolchain.toml +0 -0
  110. {rumdl-0.0.142 → rumdl-0.0.144}/scripts/extract-changelog.sh +0 -0
  111. {rumdl-0.0.142 → rumdl-0.0.144}/scripts/generate-downloads-table.sh +0 -0
  112. {rumdl-0.0.142 → rumdl-0.0.144}/scripts/pre-release.sh +0 -0
  113. {rumdl-0.0.142 → rumdl-0.0.144}/scripts/prepare-release.sh +0 -0
  114. {rumdl-0.0.142 → rumdl-0.0.144}/scripts/setup-pre-commit.sh +0 -0
  115. {rumdl-0.0.142 → rumdl-0.0.144}/scripts/update-pre-commit-docs.sh +0 -0
  116. {rumdl-0.0.142 → rumdl-0.0.144}/src/config.rs +0 -0
  117. {rumdl-0.0.142 → rumdl-0.0.144}/src/exit_codes.rs +0 -0
  118. {rumdl-0.0.142 → rumdl-0.0.144}/src/inline_config.rs +0 -0
  119. {rumdl-0.0.142 → rumdl-0.0.144}/src/lib.rs +0 -0
  120. {rumdl-0.0.142 → rumdl-0.0.144}/src/lsp/mod.rs +0 -0
  121. {rumdl-0.0.142 → rumdl-0.0.144}/src/lsp/server.rs +0 -0
  122. {rumdl-0.0.142 → rumdl-0.0.144}/src/lsp/types.rs +0 -0
  123. {rumdl-0.0.142 → rumdl-0.0.144}/src/output/formatters/azure.rs +0 -0
  124. {rumdl-0.0.142 → rumdl-0.0.144}/src/output/formatters/concise.rs +0 -0
  125. {rumdl-0.0.142 → rumdl-0.0.144}/src/output/formatters/github.rs +0 -0
  126. {rumdl-0.0.142 → rumdl-0.0.144}/src/output/formatters/gitlab.rs +0 -0
  127. {rumdl-0.0.142 → rumdl-0.0.144}/src/output/formatters/grouped.rs +0 -0
  128. {rumdl-0.0.142 → rumdl-0.0.144}/src/output/formatters/json.rs +0 -0
  129. {rumdl-0.0.142 → rumdl-0.0.144}/src/output/formatters/json_lines.rs +0 -0
  130. {rumdl-0.0.142 → rumdl-0.0.144}/src/output/formatters/junit.rs +0 -0
  131. {rumdl-0.0.142 → rumdl-0.0.144}/src/output/formatters/mod.rs +0 -0
  132. {rumdl-0.0.142 → rumdl-0.0.144}/src/output/formatters/pylint.rs +0 -0
  133. {rumdl-0.0.142 → rumdl-0.0.144}/src/output/formatters/sarif.rs +0 -0
  134. {rumdl-0.0.142 → rumdl-0.0.144}/src/output/formatters/text.rs +0 -0
  135. {rumdl-0.0.142 → rumdl-0.0.144}/src/output/mod.rs +0 -0
  136. {rumdl-0.0.142 → rumdl-0.0.144}/src/parallel.rs +0 -0
  137. {rumdl-0.0.142 → rumdl-0.0.144}/src/performance.rs +0 -0
  138. {rumdl-0.0.142 → rumdl-0.0.144}/src/profiling.rs +0 -0
  139. {rumdl-0.0.142 → rumdl-0.0.144}/src/python.rs +0 -0
  140. {rumdl-0.0.142 → rumdl-0.0.144}/src/rule.rs +0 -0
  141. {rumdl-0.0.142 → rumdl-0.0.144}/src/rule_config.rs +0 -0
  142. {rumdl-0.0.142 → rumdl-0.0.144}/src/rule_config_serde.rs +0 -0
  143. {rumdl-0.0.142 → rumdl-0.0.144}/src/rules/blockquote_utils.rs +0 -0
  144. {rumdl-0.0.142 → rumdl-0.0.144}/src/rules/code_block_utils.rs +0 -0
  145. {rumdl-0.0.142 → rumdl-0.0.144}/src/rules/code_fence_utils.rs +0 -0
  146. {rumdl-0.0.142 → rumdl-0.0.144}/src/rules/emphasis_style.rs +0 -0
  147. {rumdl-0.0.142 → rumdl-0.0.144}/src/rules/front_matter_utils.rs +0 -0
  148. {rumdl-0.0.142 → rumdl-0.0.144}/src/rules/heading_utils.rs +0 -0
  149. {rumdl-0.0.142 → rumdl-0.0.144}/src/rules/list_utils.rs +0 -0
  150. {rumdl-0.0.142 → rumdl-0.0.144}/src/rules/md001_heading_increment.rs +0 -0
  151. {rumdl-0.0.142 → rumdl-0.0.144}/src/rules/md002_first_heading_h1/md002_config.rs +0 -0
  152. {rumdl-0.0.142 → rumdl-0.0.144}/src/rules/md002_first_heading_h1.rs +0 -0
  153. {rumdl-0.0.142 → rumdl-0.0.144}/src/rules/md003_heading_style/md003_config.rs +0 -0
  154. {rumdl-0.0.142 → rumdl-0.0.144}/src/rules/md003_heading_style.rs +0 -0
  155. {rumdl-0.0.142 → rumdl-0.0.144}/src/rules/md004_unordered_list_style/md004_config.rs +0 -0
  156. {rumdl-0.0.142 → rumdl-0.0.144}/src/rules/md004_unordered_list_style.rs +0 -0
  157. {rumdl-0.0.142 → rumdl-0.0.144}/src/rules/md005_list_indent.rs +0 -0
  158. {rumdl-0.0.142 → rumdl-0.0.144}/src/rules/md006_start_bullets.rs +0 -0
  159. {rumdl-0.0.142 → rumdl-0.0.144}/src/rules/md007_ul_indent/md007_config.rs +0 -0
  160. {rumdl-0.0.142 → rumdl-0.0.144}/src/rules/md007_ul_indent.rs +0 -0
  161. {rumdl-0.0.142 → rumdl-0.0.144}/src/rules/md009_trailing_spaces/md009_config.rs +0 -0
  162. {rumdl-0.0.142 → rumdl-0.0.144}/src/rules/md009_trailing_spaces.rs +0 -0
  163. {rumdl-0.0.142 → rumdl-0.0.144}/src/rules/md010_no_hard_tabs/md010_config.rs +0 -0
  164. {rumdl-0.0.142 → rumdl-0.0.144}/src/rules/md010_no_hard_tabs.rs +0 -0
  165. {rumdl-0.0.142 → rumdl-0.0.144}/src/rules/md011_no_reversed_links.rs +0 -0
  166. {rumdl-0.0.142 → rumdl-0.0.144}/src/rules/md012_no_multiple_blanks/md012_config.rs +0 -0
  167. {rumdl-0.0.142 → rumdl-0.0.144}/src/rules/md012_no_multiple_blanks.rs +0 -0
  168. {rumdl-0.0.142 → rumdl-0.0.144}/src/rules/md014_commands_show_output/md014_config.rs +0 -0
  169. {rumdl-0.0.142 → rumdl-0.0.144}/src/rules/md014_commands_show_output.rs +0 -0
  170. {rumdl-0.0.142 → rumdl-0.0.144}/src/rules/md018_no_missing_space_atx.rs +0 -0
  171. {rumdl-0.0.142 → rumdl-0.0.144}/src/rules/md019_no_multiple_space_atx.rs +0 -0
  172. {rumdl-0.0.142 → rumdl-0.0.144}/src/rules/md020_no_missing_space_closed_atx.rs +0 -0
  173. {rumdl-0.0.142 → rumdl-0.0.144}/src/rules/md021_no_multiple_space_closed_atx.rs +0 -0
  174. {rumdl-0.0.142 → rumdl-0.0.144}/src/rules/md022_blanks_around_headings/md022_config.rs +0 -0
  175. {rumdl-0.0.142 → rumdl-0.0.144}/src/rules/md022_blanks_around_headings.rs +0 -0
  176. {rumdl-0.0.142 → rumdl-0.0.144}/src/rules/md023_heading_start_left.rs +0 -0
  177. {rumdl-0.0.142 → rumdl-0.0.144}/src/rules/md024_no_duplicate_heading/md024_config.rs +0 -0
  178. {rumdl-0.0.142 → rumdl-0.0.144}/src/rules/md024_no_duplicate_heading.rs +0 -0
  179. {rumdl-0.0.142 → rumdl-0.0.144}/src/rules/md025_single_title/md025_config.rs +0 -0
  180. {rumdl-0.0.142 → rumdl-0.0.144}/src/rules/md025_single_title.rs +0 -0
  181. {rumdl-0.0.142 → rumdl-0.0.144}/src/rules/md026_no_trailing_punctuation/md026_config.rs +0 -0
  182. {rumdl-0.0.142 → rumdl-0.0.144}/src/rules/md026_no_trailing_punctuation.rs +0 -0
  183. {rumdl-0.0.142 → rumdl-0.0.144}/src/rules/md027_multiple_spaces_blockquote.rs +0 -0
  184. {rumdl-0.0.142 → rumdl-0.0.144}/src/rules/md029_ordered_list_prefix/md029_config.rs +0 -0
  185. {rumdl-0.0.142 → rumdl-0.0.144}/src/rules/md029_ordered_list_prefix.rs +0 -0
  186. {rumdl-0.0.142 → rumdl-0.0.144}/src/rules/md030_list_marker_space/md030_config.rs +0 -0
  187. {rumdl-0.0.142 → rumdl-0.0.144}/src/rules/md031_blanks_around_fences.rs +0 -0
  188. {rumdl-0.0.142 → rumdl-0.0.144}/src/rules/md032_blanks_around_lists.rs +0 -0
  189. {rumdl-0.0.142 → rumdl-0.0.144}/src/rules/md033_no_inline_html/md033_config.rs +0 -0
  190. {rumdl-0.0.142 → rumdl-0.0.144}/src/rules/md033_no_inline_html.rs +0 -0
  191. {rumdl-0.0.142 → rumdl-0.0.144}/src/rules/md035_hr_style/md035_config.rs +0 -0
  192. {rumdl-0.0.142 → rumdl-0.0.144}/src/rules/md035_hr_style.rs +0 -0
  193. {rumdl-0.0.142 → rumdl-0.0.144}/src/rules/md036_no_emphasis_only_first/md036_config.rs +0 -0
  194. {rumdl-0.0.142 → rumdl-0.0.144}/src/rules/md036_no_emphasis_only_first.rs +0 -0
  195. {rumdl-0.0.142 → rumdl-0.0.144}/src/rules/md037_spaces_around_emphasis.rs +0 -0
  196. {rumdl-0.0.142 → rumdl-0.0.144}/src/rules/md039_no_space_in_links.rs +0 -0
  197. {rumdl-0.0.142 → rumdl-0.0.144}/src/rules/md040_fenced_code_language.rs +0 -0
  198. {rumdl-0.0.142 → rumdl-0.0.144}/src/rules/md041_first_line_heading.rs +0 -0
  199. {rumdl-0.0.142 → rumdl-0.0.144}/src/rules/md043_required_headings.rs +0 -0
  200. {rumdl-0.0.142 → rumdl-0.0.144}/src/rules/md044_proper_names/md044_config.rs +0 -0
  201. {rumdl-0.0.142 → rumdl-0.0.144}/src/rules/md044_proper_names.rs +0 -0
  202. {rumdl-0.0.142 → rumdl-0.0.144}/src/rules/md045_no_alt_text/md045_config.rs +0 -0
  203. {rumdl-0.0.142 → rumdl-0.0.144}/src/rules/md045_no_alt_text.rs +0 -0
  204. {rumdl-0.0.142 → rumdl-0.0.144}/src/rules/md046_code_block_style/md046_config.rs +0 -0
  205. {rumdl-0.0.142 → rumdl-0.0.144}/src/rules/md046_code_block_style.rs +0 -0
  206. {rumdl-0.0.142 → rumdl-0.0.144}/src/rules/md047_single_trailing_newline.rs +0 -0
  207. {rumdl-0.0.142 → rumdl-0.0.144}/src/rules/md048_code_fence_style/md048_config.rs +0 -0
  208. {rumdl-0.0.142 → rumdl-0.0.144}/src/rules/md048_code_fence_style.rs +0 -0
  209. {rumdl-0.0.142 → rumdl-0.0.144}/src/rules/md049_emphasis_style/md049_config.rs +0 -0
  210. {rumdl-0.0.142 → rumdl-0.0.144}/src/rules/md049_emphasis_style.rs +0 -0
  211. {rumdl-0.0.142 → rumdl-0.0.144}/src/rules/md050_strong_style/md050_config.rs +0 -0
  212. {rumdl-0.0.142 → rumdl-0.0.144}/src/rules/md050_strong_style.rs +0 -0
  213. {rumdl-0.0.142 → rumdl-0.0.144}/src/rules/md053_link_image_reference_definitions.rs +0 -0
  214. {rumdl-0.0.142 → rumdl-0.0.144}/src/rules/md054_link_image_style/md054_config.rs +0 -0
  215. {rumdl-0.0.142 → rumdl-0.0.144}/src/rules/md054_link_image_style.rs +0 -0
  216. {rumdl-0.0.142 → rumdl-0.0.144}/src/rules/md055_table_pipe_style/md055_config.rs +0 -0
  217. {rumdl-0.0.142 → rumdl-0.0.144}/src/rules/md055_table_pipe_style.rs +0 -0
  218. {rumdl-0.0.142 → rumdl-0.0.144}/src/rules/md056_table_column_count.rs +0 -0
  219. {rumdl-0.0.142 → rumdl-0.0.144}/src/rules/md057_existing_relative_links/md057_config.rs +0 -0
  220. {rumdl-0.0.142 → rumdl-0.0.144}/src/rules/md057_existing_relative_links.rs +0 -0
  221. {rumdl-0.0.142 → rumdl-0.0.144}/src/rules/md058_blanks_around_tables.rs +0 -0
  222. {rumdl-0.0.142 → rumdl-0.0.144}/src/rules/mod.rs +0 -0
  223. {rumdl-0.0.142 → rumdl-0.0.144}/src/rules/strong_style.rs +0 -0
  224. {rumdl-0.0.142 → rumdl-0.0.144}/src/utils/anchor_styles/github.rs +0 -0
  225. {rumdl-0.0.142 → rumdl-0.0.144}/src/utils/anchor_styles/jekyll.rs +0 -0
  226. {rumdl-0.0.142 → rumdl-0.0.144}/src/utils/anchor_styles/kramdown.rs +0 -0
  227. {rumdl-0.0.142 → rumdl-0.0.144}/src/utils/anchor_styles/kramdown_gfm.rs +0 -0
  228. {rumdl-0.0.142 → rumdl-0.0.144}/src/utils/anchor_styles/mod.rs +0 -0
  229. {rumdl-0.0.142 → rumdl-0.0.144}/src/utils/ast_utils.rs +0 -0
  230. {rumdl-0.0.142 → rumdl-0.0.144}/src/utils/document_structure.rs +0 -0
  231. {rumdl-0.0.142 → rumdl-0.0.144}/src/utils/early_returns.rs +0 -0
  232. {rumdl-0.0.142 → rumdl-0.0.144}/src/utils/element_cache.rs +0 -0
  233. {rumdl-0.0.142 → rumdl-0.0.144}/src/utils/emphasis_utils.rs +0 -0
  234. {rumdl-0.0.142 → rumdl-0.0.144}/src/utils/fix_utils.rs +0 -0
  235. {rumdl-0.0.142 → rumdl-0.0.144}/src/utils/header_id_utils.rs +0 -0
  236. {rumdl-0.0.142 → rumdl-0.0.144}/src/utils/kramdown_utils.rs +0 -0
  237. {rumdl-0.0.142 → rumdl-0.0.144}/src/utils/line_ending.rs +0 -0
  238. {rumdl-0.0.142 → rumdl-0.0.144}/src/utils/markdown_elements.rs +0 -0
  239. {rumdl-0.0.142 → rumdl-0.0.144}/src/utils/mkdocs_admonitions.rs +0 -0
  240. {rumdl-0.0.142 → rumdl-0.0.144}/src/utils/mkdocs_common.rs +0 -0
  241. {rumdl-0.0.142 → rumdl-0.0.144}/src/utils/mkdocs_critic.rs +0 -0
  242. {rumdl-0.0.142 → rumdl-0.0.144}/src/utils/mkdocs_footnotes.rs +0 -0
  243. {rumdl-0.0.142 → rumdl-0.0.144}/src/utils/mkdocs_patterns.rs +0 -0
  244. {rumdl-0.0.142 → rumdl-0.0.144}/src/utils/mkdocs_snippets.rs +0 -0
  245. {rumdl-0.0.142 → rumdl-0.0.144}/src/utils/mkdocs_tabs.rs +0 -0
  246. {rumdl-0.0.142 → rumdl-0.0.144}/src/utils/mkdocs_test_utils.rs +0 -0
  247. {rumdl-0.0.142 → rumdl-0.0.144}/src/utils/mkdocstrings_refs.rs +0 -0
  248. {rumdl-0.0.142 → rumdl-0.0.144}/src/utils/mod.rs +0 -0
  249. {rumdl-0.0.142 → rumdl-0.0.144}/src/utils/range_utils.rs +0 -0
  250. {rumdl-0.0.142 → rumdl-0.0.144}/src/utils/regex_cache.rs +0 -0
  251. {rumdl-0.0.142 → rumdl-0.0.144}/src/utils/skip_context.rs +0 -0
  252. {rumdl-0.0.142 → rumdl-0.0.144}/src/utils/string_interner.rs +0 -0
  253. {rumdl-0.0.142 → rumdl-0.0.144}/src/utils/table_utils.rs +0 -0
  254. {rumdl-0.0.142 → rumdl-0.0.144}/src/vscode.rs +0 -0
  255. {rumdl-0.0.142 → rumdl-0.0.144}/tests/advanced_integration_tests.rs +0 -0
  256. {rumdl-0.0.142 → rumdl-0.0.144}/tests/character_ranges/additional_tests.rs +0 -0
  257. {rumdl-0.0.142 → rumdl-0.0.144}/tests/character_ranges/basic_tests.rs +0 -0
  258. {rumdl-0.0.142 → rumdl-0.0.144}/tests/character_ranges/comprehensive_tests.rs +0 -0
  259. {rumdl-0.0.142 → rumdl-0.0.144}/tests/character_ranges/extended_tests.rs +0 -0
  260. {rumdl-0.0.142 → rumdl-0.0.144}/tests/character_ranges/mod.rs +0 -0
  261. {rumdl-0.0.142 → rumdl-0.0.144}/tests/character_ranges/unicode_utils.rs +0 -0
  262. {rumdl-0.0.142 → rumdl-0.0.144}/tests/cli_duplication_test.rs +0 -0
  263. {rumdl-0.0.142 → rumdl-0.0.144}/tests/cli_explain_test.rs +0 -0
  264. {rumdl-0.0.142 → rumdl-0.0.144}/tests/cli_flag_precedence_test.rs +0 -0
  265. {rumdl-0.0.142 → rumdl-0.0.144}/tests/cli_integration_tests.rs +0 -0
  266. {rumdl-0.0.142 → rumdl-0.0.144}/tests/cli_lsp_fix_consistency.rs +0 -0
  267. {rumdl-0.0.142 → rumdl-0.0.144}/tests/cli_statistics_test.rs +0 -0
  268. {rumdl-0.0.142 → rumdl-0.0.144}/tests/common/cli_test_utils.rs +0 -0
  269. {rumdl-0.0.142 → rumdl-0.0.144}/tests/common/fixtures.rs +0 -0
  270. {rumdl-0.0.142 → rumdl-0.0.144}/tests/common/mod.rs +0 -0
  271. {rumdl-0.0.142 → rumdl-0.0.144}/tests/common/test_utils.rs +0 -0
  272. {rumdl-0.0.142 → rumdl-0.0.144}/tests/commonmark_compliance_tests.rs +0 -0
  273. {rumdl-0.0.142 → rumdl-0.0.144}/tests/comprehensive_integration_tests.rs +0 -0
  274. {rumdl-0.0.142 → rumdl-0.0.144}/tests/comprehensive_output_format_tests.rs +0 -0
  275. {rumdl-0.0.142 → rumdl-0.0.144}/tests/config_application_tests.rs +0 -0
  276. {rumdl-0.0.142 → rumdl-0.0.144}/tests/config_file_command_test.rs +0 -0
  277. {rumdl-0.0.142 → rumdl-0.0.144}/tests/config_tests.rs +0 -0
  278. {rumdl-0.0.142 → rumdl-0.0.144}/tests/config_upward_traversal_test.rs +0 -0
  279. {rumdl-0.0.142 → rumdl-0.0.144}/tests/configuration_inheritance_tests.rs +0 -0
  280. {rumdl-0.0.142 → rumdl-0.0.144}/tests/consistency_regression_tests.rs +0 -0
  281. {rumdl-0.0.142 → rumdl-0.0.144}/tests/cross_platform_compatibility_tests.rs +0 -0
  282. {rumdl-0.0.142 → rumdl-0.0.144}/tests/deeply_nested_lists_performance_test.rs +0 -0
  283. {rumdl-0.0.142 → rumdl-0.0.144}/tests/escaped_brackets_test.rs +0 -0
  284. {rumdl-0.0.142 → rumdl-0.0.144}/tests/final_confidence_assessment.rs +0 -0
  285. {rumdl-0.0.142 → rumdl-0.0.144}/tests/fix_counting_test.rs +0 -0
  286. {rumdl-0.0.142 → rumdl-0.0.144}/tests/fixable_unfixable_config_test.rs +0 -0
  287. {rumdl-0.0.142 → rumdl-0.0.144}/tests/init_command_test.rs +0 -0
  288. {rumdl-0.0.142 → rumdl-0.0.144}/tests/init_tests.rs +0 -0
  289. {rumdl-0.0.142 → rumdl-0.0.144}/tests/inline_config_blocks_test.rs +0 -0
  290. {rumdl-0.0.142 → rumdl-0.0.144}/tests/inline_config_test.rs +0 -0
  291. {rumdl-0.0.142 → rumdl-0.0.144}/tests/integration_tests.rs +0 -0
  292. {rumdl-0.0.142 → rumdl-0.0.144}/tests/json_output_test.rs +0 -0
  293. {rumdl-0.0.142 → rumdl-0.0.144}/tests/kramdown_integration_test.rs +0 -0
  294. {rumdl-0.0.142 → rumdl-0.0.144}/tests/lib.rs +0 -0
  295. {rumdl-0.0.142 → rumdl-0.0.144}/tests/lsp_editor_integration_tests.rs +0 -0
  296. {rumdl-0.0.142 → rumdl-0.0.144}/tests/lsp_formatting_tests.rs +0 -0
  297. {rumdl-0.0.142 → rumdl-0.0.144}/tests/lsp_initialization_options_test.rs +0 -0
  298. {rumdl-0.0.142 → rumdl-0.0.144}/tests/lsp_integration_tests.rs +0 -0
  299. {rumdl-0.0.142 → rumdl-0.0.144}/tests/lsp_memory_leak_tests.rs +0 -0
  300. {rumdl-0.0.142 → rumdl-0.0.144}/tests/lsp_mkdocs_flavor_test.rs +0 -0
  301. {rumdl-0.0.142 → rumdl-0.0.144}/tests/lsp_tests.rs +0 -0
  302. {rumdl-0.0.142 → rumdl-0.0.144}/tests/lsp_unopened_document_test.rs +0 -0
  303. {rumdl-0.0.142 → rumdl-0.0.144}/tests/malformed_markdown_stress_tests.rs +0 -0
  304. {rumdl-0.0.142 → rumdl-0.0.144}/tests/markdownlint_cli_integration.rs +0 -0
  305. {rumdl-0.0.142 → rumdl-0.0.144}/tests/markdownlint_config_test.rs +0 -0
  306. {rumdl-0.0.142 → rumdl-0.0.144}/tests/markdownlintignore_test.rs +0 -0
  307. {rumdl-0.0.142 → rumdl-0.0.144}/tests/md013_reflow_integration_test.rs +0 -0
  308. {rumdl-0.0.142 → rumdl-0.0.144}/tests/md032_ordered_list_bug_test.rs +0 -0
  309. {rumdl-0.0.142 → rumdl-0.0.144}/tests/md037_xxxx_regression_test.rs +0 -0
  310. {rumdl-0.0.142 → rumdl-0.0.144}/tests/md038_false_positive_test.rs +0 -0
  311. {rumdl-0.0.142 → rumdl-0.0.144}/tests/md051_issue_39_regression_test.rs +0 -0
  312. {rumdl-0.0.142 → rumdl-0.0.144}/tests/md051_toc_bug_test.rs +0 -0
  313. {rumdl-0.0.142 → rumdl-0.0.144}/tests/md052_literal_brackets_test.rs +0 -0
  314. {rumdl-0.0.142 → rumdl-0.0.144}/tests/nested_code_block_test.rs +0 -0
  315. {rumdl-0.0.142 → rumdl-0.0.144}/tests/output_format_integration_tests.rs +0 -0
  316. {rumdl-0.0.142 → rumdl-0.0.144}/tests/output_format_tests.rs +0 -0
  317. {rumdl-0.0.142 → rumdl-0.0.144}/tests/perf_check.rs +0 -0
  318. {rumdl-0.0.142 → rumdl-0.0.144}/tests/performance_validation_tests.rs +0 -0
  319. {rumdl-0.0.142 → rumdl-0.0.144}/tests/pyproject_config_tests.rs +0 -0
  320. {rumdl-0.0.142 → rumdl-0.0.144}/tests/python_bindings_test.rs +0 -0
  321. {rumdl-0.0.142 → rumdl-0.0.144}/tests/real_world_repository_tests.rs +0 -0
  322. {rumdl-0.0.142 → rumdl-0.0.144}/tests/regression_prevention_tests.rs +0 -0
  323. {rumdl-0.0.142 → rumdl-0.0.144}/tests/rules/emphasis_edge_cases_test.rs +0 -0
  324. {rumdl-0.0.142 → rumdl-0.0.144}/tests/rules/heading_edge_cases_test.rs +0 -0
  325. {rumdl-0.0.142 → rumdl-0.0.144}/tests/rules/inline_content_edge_cases_test.rs +0 -0
  326. {rumdl-0.0.142 → rumdl-0.0.144}/tests/rules/link_edge_cases_test.rs +0 -0
  327. {rumdl-0.0.142 → rumdl-0.0.144}/tests/rules/list_rules_integration_test.rs +0 -0
  328. {rumdl-0.0.142 → rumdl-0.0.144}/tests/rules/md001_test.rs +0 -0
  329. {rumdl-0.0.142 → rumdl-0.0.144}/tests/rules/md001_unicode_test.rs +0 -0
  330. {rumdl-0.0.142 → rumdl-0.0.144}/tests/rules/md002_test.rs +0 -0
  331. {rumdl-0.0.142 → rumdl-0.0.144}/tests/rules/md003_test.rs +0 -0
  332. {rumdl-0.0.142 → rumdl-0.0.144}/tests/rules/md004_test.rs +0 -0
  333. {rumdl-0.0.142 → rumdl-0.0.144}/tests/rules/md005_dynamic_indent_test.rs +0 -0
  334. {rumdl-0.0.142 → rumdl-0.0.144}/tests/rules/md005_test.rs +0 -0
  335. {rumdl-0.0.142 → rumdl-0.0.144}/tests/rules/md005_unicode_test.rs +0 -0
  336. {rumdl-0.0.142 → rumdl-0.0.144}/tests/rules/md006_test.rs +0 -0
  337. {rumdl-0.0.142 → rumdl-0.0.144}/tests/rules/md006_unicode_test.rs +0 -0
  338. {rumdl-0.0.142 → rumdl-0.0.144}/tests/rules/md007_test.rs +0 -0
  339. {rumdl-0.0.142 → rumdl-0.0.144}/tests/rules/md009_test.rs +0 -0
  340. {rumdl-0.0.142 → rumdl-0.0.144}/tests/rules/md010_test.rs +0 -0
  341. {rumdl-0.0.142 → rumdl-0.0.144}/tests/rules/md011_test.rs +0 -0
  342. {rumdl-0.0.142 → rumdl-0.0.144}/tests/rules/md012_test.rs +0 -0
  343. {rumdl-0.0.142 → rumdl-0.0.144}/tests/rules/md013_test.rs +0 -0
  344. {rumdl-0.0.142 → rumdl-0.0.144}/tests/rules/md014_test.rs +0 -0
  345. {rumdl-0.0.142 → rumdl-0.0.144}/tests/rules/md018_test.rs +0 -0
  346. {rumdl-0.0.142 → rumdl-0.0.144}/tests/rules/md019_test.rs +0 -0
  347. {rumdl-0.0.142 → rumdl-0.0.144}/tests/rules/md020_test.rs +0 -0
  348. {rumdl-0.0.142 → rumdl-0.0.144}/tests/rules/md021_test.rs +0 -0
  349. {rumdl-0.0.142 → rumdl-0.0.144}/tests/rules/md022_test.rs +0 -0
  350. {rumdl-0.0.142 → rumdl-0.0.144}/tests/rules/md023_extended_test.rs +0 -0
  351. {rumdl-0.0.142 → rumdl-0.0.144}/tests/rules/md023_test.rs +0 -0
  352. {rumdl-0.0.142 → rumdl-0.0.144}/tests/rules/md024_test.rs +0 -0
  353. {rumdl-0.0.142 → rumdl-0.0.144}/tests/rules/md025_test.rs +0 -0
  354. {rumdl-0.0.142 → rumdl-0.0.144}/tests/rules/md026_kramdown_test.rs +0 -0
  355. {rumdl-0.0.142 → rumdl-0.0.144}/tests/rules/md026_test.rs +0 -0
  356. {rumdl-0.0.142 → rumdl-0.0.144}/tests/rules/md027_test.rs +0 -0
  357. {rumdl-0.0.142 → rumdl-0.0.144}/tests/rules/md028_md009_interaction_test.rs +0 -0
  358. {rumdl-0.0.142 → rumdl-0.0.144}/tests/rules/md028_test.rs +0 -0
  359. {rumdl-0.0.142 → rumdl-0.0.144}/tests/rules/md029_code_block_separation_test.rs +0 -0
  360. {rumdl-0.0.142 → rumdl-0.0.144}/tests/rules/md029_fix_test.rs +0 -0
  361. {rumdl-0.0.142 → rumdl-0.0.144}/tests/rules/md029_issue42_test.rs +0 -0
  362. {rumdl-0.0.142 → rumdl-0.0.144}/tests/rules/md029_markdownlint_parity_test.rs +0 -0
  363. {rumdl-0.0.142 → rumdl-0.0.144}/tests/rules/md029_pathological_edge_cases_test.rs +0 -0
  364. {rumdl-0.0.142 → rumdl-0.0.144}/tests/rules/md029_test.rs +0 -0
  365. {rumdl-0.0.142 → rumdl-0.0.144}/tests/rules/md029_unicode_test.rs +0 -0
  366. {rumdl-0.0.142 → rumdl-0.0.144}/tests/rules/md030_test.rs +0 -0
  367. {rumdl-0.0.142 → rumdl-0.0.144}/tests/rules/md031_kramdown_test.rs +0 -0
  368. {rumdl-0.0.142 → rumdl-0.0.144}/tests/rules/md031_test.rs +0 -0
  369. {rumdl-0.0.142 → rumdl-0.0.144}/tests/rules/md032_test.rs +0 -0
  370. {rumdl-0.0.142 → rumdl-0.0.144}/tests/rules/md033_extended_test.rs +0 -0
  371. {rumdl-0.0.142 → rumdl-0.0.144}/tests/rules/md033_kramdown_test.rs +0 -0
  372. {rumdl-0.0.142 → rumdl-0.0.144}/tests/rules/md033_test.rs +0 -0
  373. {rumdl-0.0.142 → rumdl-0.0.144}/tests/rules/md034_ipv6_test.rs +0 -0
  374. {rumdl-0.0.142 → rumdl-0.0.144}/tests/rules/md034_test.rs +0 -0
  375. {rumdl-0.0.142 → rumdl-0.0.144}/tests/rules/md035_test.rs +0 -0
  376. {rumdl-0.0.142 → rumdl-0.0.144}/tests/rules/md036_test.rs +0 -0
  377. {rumdl-0.0.142 → rumdl-0.0.144}/tests/rules/md037_kramdown_test.rs +0 -0
  378. {rumdl-0.0.142 → rumdl-0.0.144}/tests/rules/md037_test.rs +0 -0
  379. {rumdl-0.0.142 → rumdl-0.0.144}/tests/rules/md038_nested_backticks_test.rs +0 -0
  380. {rumdl-0.0.142 → rumdl-0.0.144}/tests/rules/md038_test.rs +0 -0
  381. {rumdl-0.0.142 → rumdl-0.0.144}/tests/rules/md039_test.rs +0 -0
  382. {rumdl-0.0.142 → rumdl-0.0.144}/tests/rules/md040_test.rs +0 -0
  383. {rumdl-0.0.142 → rumdl-0.0.144}/tests/rules/md041_test.rs +0 -0
  384. {rumdl-0.0.142 → rumdl-0.0.144}/tests/rules/md043_test.rs +0 -0
  385. {rumdl-0.0.142 → rumdl-0.0.144}/tests/rules/md044_test.rs +0 -0
  386. {rumdl-0.0.142 → rumdl-0.0.144}/tests/rules/md045_test.rs +0 -0
  387. {rumdl-0.0.142 → rumdl-0.0.144}/tests/rules/md046_test.rs +0 -0
  388. {rumdl-0.0.142 → rumdl-0.0.144}/tests/rules/md047_test.rs +0 -0
  389. {rumdl-0.0.142 → rumdl-0.0.144}/tests/rules/md048_test.rs +0 -0
  390. {rumdl-0.0.142 → rumdl-0.0.144}/tests/rules/md049_test.rs +0 -0
  391. {rumdl-0.0.142 → rumdl-0.0.144}/tests/rules/md050_test.rs +0 -0
  392. {rumdl-0.0.142 → rumdl-0.0.144}/tests/rules/md051_comprehensive_test.rs +0 -0
  393. {rumdl-0.0.142 → rumdl-0.0.144}/tests/rules/md051_critical_edge_cases_test.rs +0 -0
  394. {rumdl-0.0.142 → rumdl-0.0.144}/tests/rules/md051_edge_cases_test.rs +0 -0
  395. {rumdl-0.0.142 → rumdl-0.0.144}/tests/rules/md051_issue_39_regression_test.rs +0 -0
  396. {rumdl-0.0.142 → rumdl-0.0.144}/tests/rules/md051_performance_edge_cases_test.rs +0 -0
  397. {rumdl-0.0.142 → rumdl-0.0.144}/tests/rules/md051_property_based_test.rs +0 -0
  398. {rumdl-0.0.142 → rumdl-0.0.144}/tests/rules/md051_regression_prevention_test.rs +0 -0
  399. {rumdl-0.0.142 → rumdl-0.0.144}/tests/rules/md051_test.rs +0 -0
  400. {rumdl-0.0.142 → rumdl-0.0.144}/tests/rules/md051_unicode_security_test.rs +0 -0
  401. {rumdl-0.0.142 → rumdl-0.0.144}/tests/rules/md052_test.rs +0 -0
  402. {rumdl-0.0.142 → rumdl-0.0.144}/tests/rules/md053_additional_test.rs +0 -0
  403. {rumdl-0.0.142 → rumdl-0.0.144}/tests/rules/md053_proptest.rs +0 -0
  404. {rumdl-0.0.142 → rumdl-0.0.144}/tests/rules/md053_test.rs +0 -0
  405. {rumdl-0.0.142 → rumdl-0.0.144}/tests/rules/md054_test.rs +0 -0
  406. {rumdl-0.0.142 → rumdl-0.0.144}/tests/rules/md054_unicode_test.rs +0 -0
  407. {rumdl-0.0.142 → rumdl-0.0.144}/tests/rules/md055_test.rs +0 -0
  408. {rumdl-0.0.142 → rumdl-0.0.144}/tests/rules/md056_test.rs +0 -0
  409. {rumdl-0.0.142 → rumdl-0.0.144}/tests/rules/md057_test.rs +0 -0
  410. {rumdl-0.0.142 → rumdl-0.0.144}/tests/rules/md058_kramdown_test.rs +0 -0
  411. {rumdl-0.0.142 → rumdl-0.0.144}/tests/rules/md058_test.rs +0 -0
  412. {rumdl-0.0.142 → rumdl-0.0.144}/tests/rules/mkdocs_admonitions_test.rs +0 -0
  413. {rumdl-0.0.142 → rumdl-0.0.144}/tests/rules/mkdocs_edge_cases_test.rs +0 -0
  414. {rumdl-0.0.142 → rumdl-0.0.144}/tests/rules/mkdocs_extensions_test.rs +0 -0
  415. {rumdl-0.0.142 → rumdl-0.0.144}/tests/rules/mkdocs_snippets_test.rs +0 -0
  416. {rumdl-0.0.142 → rumdl-0.0.144}/tests/rules/mod.rs +0 -0
  417. {rumdl-0.0.142 → rumdl-0.0.144}/tests/rules/rule_interaction_test.rs +0 -0
  418. {rumdl-0.0.142 → rumdl-0.0.144}/tests/rules_mod_test.rs +0 -0
  419. {rumdl-0.0.142 → rumdl-0.0.144}/tests/skip_context_tests.rs +0 -0
  420. {rumdl-0.0.142 → rumdl-0.0.144}/tests/test_underscore_edge_cases.rs +0 -0
  421. {rumdl-0.0.142 → rumdl-0.0.144}/tests/thread_safety_tests.rs +0 -0
  422. {rumdl-0.0.142 → rumdl-0.0.144}/tests/unfixable_rules_test.rs +0 -0
  423. {rumdl-0.0.142 → rumdl-0.0.144}/tests/unicode_edge_case_tests.rs +0 -0
  424. {rumdl-0.0.142 → rumdl-0.0.144}/tests/utf8_boundary_tests.rs +0 -0
  425. {rumdl-0.0.142 → rumdl-0.0.144}/tests/utils/blockquote_utils_test.rs +0 -0
  426. {rumdl-0.0.142 → rumdl-0.0.144}/tests/utils/code_block_utils_extended_test.rs +0 -0
  427. {rumdl-0.0.142 → rumdl-0.0.144}/tests/utils/code_block_utils_test.rs +0 -0
  428. {rumdl-0.0.142 → rumdl-0.0.144}/tests/utils/core_utils_test.rs +0 -0
  429. {rumdl-0.0.142 → rumdl-0.0.144}/tests/utils/front_matter_utils_test.rs +0 -0
  430. {rumdl-0.0.142 → rumdl-0.0.144}/tests/utils/line_index_test.rs +0 -0
  431. {rumdl-0.0.142 → rumdl-0.0.144}/tests/utils/mod.rs +0 -0
  432. {rumdl-0.0.142 → rumdl-0.0.144}/tests/utils_markdown_edge_cases.rs +0 -0
  433. {rumdl-0.0.142 → rumdl-0.0.144}/tests/utils_tests.rs +0 -0
  434. {rumdl-0.0.142 → rumdl-0.0.144}/tests/vscode_extension_fixes.rs +0 -0
  435. {rumdl-0.0.142 → rumdl-0.0.144}/tests/vscode_test.rs +0 -0
  436. {rumdl-0.0.142 → rumdl-0.0.144}/tests/vscode_tests.rs +0 -0
  437. {rumdl-0.0.142 → rumdl-0.0.144}/tests/vscode_windows_comprehensive_test.rs +0 -0
  438. {rumdl-0.0.142 → rumdl-0.0.144}/tests/vscode_windows_test.rs +0 -0
@@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
+ ## [0.0.144] - 2025-09-22
11
+
10
12
  ## [0.0.142] - 2025-09-20
11
13
 
12
14
  ### Fixed
@@ -723,7 +725,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
723
725
 
724
726
  - Initial implementation of remaining rules for markdownlint parity
725
727
 
726
- [Unreleased]: https://github.com/rvben/rumdl/compare/v0.0.142...HEAD
728
+ [Unreleased]: https://github.com/rvben/rumdl/compare/v0.0.144...HEAD
729
+ [0.0.144]: https://github.com/rvben/rumdl/compare/v0.0.143...v0.0.144
727
730
  [0.0.142]: https://github.com/rvben/rumdl/compare/v0.0.141...v0.0.142
728
731
  [0.0.140]: https://github.com/rvben/rumdl/compare/v0.0.139...v0.0.140
729
732
  [0.0.138]: https://github.com/rvben/rumdl/compare/v0.0.137...v0.0.138
@@ -1045,6 +1045,16 @@ version = "0.2.175"
1045
1045
  source = "registry+https://github.com/rust-lang/crates.io-index"
1046
1046
  checksum = "6a82ae493e598baaea5209805c49bbf2ea7de956d50d7da0da1164f9c6d28543"
1047
1047
 
1048
+ [[package]]
1049
+ name = "libmimalloc-sys"
1050
+ version = "0.1.44"
1051
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1052
+ checksum = "667f4fec20f29dfc6bc7357c582d91796c169ad7e2fce709468aefeb2c099870"
1053
+ dependencies = [
1054
+ "cc",
1055
+ "libc",
1056
+ ]
1057
+
1048
1058
  [[package]]
1049
1059
  name = "libredox"
1050
1060
  version = "0.1.10"
@@ -1130,6 +1140,15 @@ dependencies = [
1130
1140
  "autocfg",
1131
1141
  ]
1132
1142
 
1143
+ [[package]]
1144
+ name = "mimalloc"
1145
+ version = "0.1.48"
1146
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1147
+ checksum = "e1ee66a4b64c74f4ef288bcbb9192ad9c3feaad75193129ac8509af543894fd8"
1148
+ dependencies = [
1149
+ "libmimalloc-sys",
1150
+ ]
1151
+
1133
1152
  [[package]]
1134
1153
  name = "miniz_oxide"
1135
1154
  version = "0.8.9"
@@ -1406,9 +1425,9 @@ dependencies = [
1406
1425
 
1407
1426
  [[package]]
1408
1427
  name = "proptest"
1409
- version = "1.7.0"
1428
+ version = "1.8.0"
1410
1429
  source = "registry+https://github.com/rust-lang/crates.io-index"
1411
- checksum = "6fcdab19deb5195a31cf7726a210015ff1496ba1464fd42cb4f537b8b01b471f"
1430
+ checksum = "2bb0be07becd10686a0bb407298fb425360a5c44a663774406340c59a22de4ce"
1412
1431
  dependencies = [
1413
1432
  "bit-set",
1414
1433
  "bit-vec",
@@ -1625,7 +1644,7 @@ checksum = "caf4aa5b0f434c91fe5c7f1ecb6a5ece2130b02ad2a590589dda5146df959001"
1625
1644
 
1626
1645
  [[package]]
1627
1646
  name = "rumdl"
1628
- version = "0.0.142"
1647
+ version = "0.0.144"
1629
1648
  dependencies = [
1630
1649
  "anyhow",
1631
1650
  "assert_cmd",
@@ -1644,6 +1663,7 @@ dependencies = [
1644
1663
  "log",
1645
1664
  "markdown",
1646
1665
  "memmap2",
1666
+ "mimalloc",
1647
1667
  "notify",
1648
1668
  "num_cpus",
1649
1669
  "once_cell",
@@ -1662,6 +1682,7 @@ dependencies = [
1662
1682
  "strsim",
1663
1683
  "tempfile",
1664
1684
  "thiserror",
1685
+ "tikv-jemallocator",
1665
1686
  "tokio",
1666
1687
  "tokio-util",
1667
1688
  "toml",
@@ -1743,9 +1764,9 @@ checksum = "1c107b6f4780854c8b126e228ea8869f4d7b71260f962fefb57b996b8959ba6b"
1743
1764
 
1744
1765
  [[package]]
1745
1766
  name = "serde"
1746
- version = "1.0.225"
1767
+ version = "1.0.226"
1747
1768
  source = "registry+https://github.com/rust-lang/crates.io-index"
1748
- checksum = "fd6c24dee235d0da097043389623fb913daddf92c76e9f5a1db88607a0bcbd1d"
1769
+ checksum = "0dca6411025b24b60bfa7ec1fe1f8e710ac09782dca409ee8237ba74b51295fd"
1749
1770
  dependencies = [
1750
1771
  "serde_core",
1751
1772
  "serde_derive",
@@ -1753,18 +1774,18 @@ dependencies = [
1753
1774
 
1754
1775
  [[package]]
1755
1776
  name = "serde_core"
1756
- version = "1.0.225"
1777
+ version = "1.0.226"
1757
1778
  source = "registry+https://github.com/rust-lang/crates.io-index"
1758
- checksum = "659356f9a0cb1e529b24c01e43ad2bdf520ec4ceaf83047b83ddcc2251f96383"
1779
+ checksum = "ba2ba63999edb9dac981fb34b3e5c0d111a69b0924e253ed29d83f7c99e966a4"
1759
1780
  dependencies = [
1760
1781
  "serde_derive",
1761
1782
  ]
1762
1783
 
1763
1784
  [[package]]
1764
1785
  name = "serde_derive"
1765
- version = "1.0.225"
1786
+ version = "1.0.226"
1766
1787
  source = "registry+https://github.com/rust-lang/crates.io-index"
1767
- checksum = "0ea936adf78b1f766949a4977b91d2f5595825bd6ec079aa9543ad2685fc4516"
1788
+ checksum = "8db53ae22f34573731bafa1db20f04027b2d25e02d8205921b569171699cdb33"
1768
1789
  dependencies = [
1769
1790
  "proc-macro2",
1770
1791
  "quote",
@@ -1933,6 +1954,26 @@ dependencies = [
1933
1954
  "syn",
1934
1955
  ]
1935
1956
 
1957
+ [[package]]
1958
+ name = "tikv-jemalloc-sys"
1959
+ version = "0.6.0+5.3.0-1-ge13ca993e8ccb9ba9847cc330696e02839f328f7"
1960
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1961
+ checksum = "cd3c60906412afa9c2b5b5a48ca6a5abe5736aec9eb48ad05037a677e52e4e2d"
1962
+ dependencies = [
1963
+ "cc",
1964
+ "libc",
1965
+ ]
1966
+
1967
+ [[package]]
1968
+ name = "tikv-jemallocator"
1969
+ version = "0.6.0"
1970
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1971
+ checksum = "4cec5ff18518d81584f477e9bfdf957f5bb0979b0bac3af4ca30b5b3ae2d2865"
1972
+ dependencies = [
1973
+ "libc",
1974
+ "tikv-jemalloc-sys",
1975
+ ]
1976
+
1936
1977
  [[package]]
1937
1978
  name = "tinystr"
1938
1979
  version = "0.8.1"
@@ -1,6 +1,6 @@
1
1
  [package]
2
2
  name = "rumdl"
3
- version = "0.0.142"
3
+ version = "0.0.144"
4
4
  edition = "2024"
5
5
  rust-version = "1.89.0"
6
6
  description = "A fast Markdown linter written in Rust (Ru(st) MarkDown Linter)"
@@ -139,3 +139,9 @@ unicode-segmentation = "1.12"
139
139
  unicode-width = "0.2"
140
140
  unicode-blocks = "0.1"
141
141
  unicode-bidi = "0.3"
142
+
143
+ [target.'cfg(not(target_env = "msvc"))'.dependencies]
144
+ tikv-jemallocator = "0.6"
145
+
146
+ [target.'cfg(target_env = "msvc")'.dependencies]
147
+ mimalloc = { version = "0.1", default-features = false }
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: rumdl
3
- Version: 0.0.142
3
+ Version: 0.0.144
4
4
  Classifier: Development Status :: 4 - Beta
5
5
  Classifier: Environment :: Console
6
6
  Classifier: Intended Audience :: Developers
@@ -87,6 +87,7 @@ enable = ["MD001", "MD003", "MD013", "MD022"]
87
87
  ```
88
88
 
89
89
  **Usage Notes**:
90
+
90
91
  - Rule IDs are case-insensitive but conventionally uppercase (e.g., "MD001")
91
92
  - If both `enable` and `disable` are specified, `enable` takes precedence
92
93
  - An empty array means all rules are enabled (default behavior)
@@ -112,6 +113,7 @@ disable = ["MD013", "MD033", "MD041"]
112
113
  ```
113
114
 
114
115
  **Usage Notes**:
116
+
115
117
  - Rule IDs are case-insensitive but conventionally uppercase
116
118
  - Commonly disabled rules include:
117
119
  - `MD013`: Line length (for projects with longer lines)
@@ -146,12 +148,14 @@ exclude = [
146
148
  ```
147
149
 
148
150
  **Supported Patterns**:
151
+
149
152
  - `directory/` - Exclude entire directory
150
153
  - `**/*.ext` - Exclude all files with extension in any subdirectory
151
154
  - `*.pattern` - Exclude files matching pattern in current directory
152
155
  - `path/**/file` - Exclude specific files in any subdirectory of path
153
156
 
154
157
  **Usage Notes**:
158
+
155
159
  - Patterns are relative to the project root
156
160
  - Exclude patterns are processed before include patterns
157
161
  - More specific patterns take precedence over general ones
@@ -183,6 +187,7 @@ include = [
183
187
  ```
184
188
 
185
189
  **Usage Notes**:
190
+
186
191
  - If `include` is empty, all Markdown files are included (subject to exclude patterns)
187
192
  - When `include` is specified, only matching files are processed
188
193
  - Combine with `exclude` for fine-grained control
@@ -210,10 +215,12 @@ respect_gitignore = false # Ignore .gitignore files
210
215
  ```
211
216
 
212
217
  **Behavior**:
218
+
213
219
  - `true` (default): Files and directories listed in `.gitignore` are automatically excluded
214
220
  - `false`: `.gitignore` files are ignored, all Markdown files are considered
215
221
 
216
222
  **Usage Notes**:
223
+
217
224
  - This setting only affects directory scanning, not explicitly provided file paths
218
225
  - Useful for linting files that are normally ignored (e.g., generated docs)
219
226
  - When disabled, you may need more specific `exclude` patterns
@@ -240,11 +247,13 @@ line_length = 120 # Set global line length to 120 characters
240
247
  ```
241
248
 
242
249
  **Behavior**:
250
+
243
251
  - Used as the default line length for MD013 and other line-length-related rules
244
252
  - Rule-specific configurations override the global setting
245
253
  - Useful for projects that want a consistent line length across all line-length rules
246
254
 
247
255
  **Usage Notes**:
256
+
248
257
  - Must be a positive integer
249
258
  - Common values: 80 (traditional), 100 (relaxed), 120 (modern)
250
259
  - Individual rules can still override this setting in their own configuration
@@ -274,12 +283,14 @@ flavor = "mkdocs" # Use MkDocs flavor
274
283
  ```
275
284
 
276
285
  **Available Flavors**:
286
+
277
287
  - `"standard"` (default): Standard Markdown syntax
278
288
  - `"mkdocs"`: MkDocs-specific extensions and syntax
279
289
 
280
290
  **Note**: Additional flavors like `"gfm"` (GitHub Flavored Markdown) and `"commonmark"` are planned for future releases. Currently, specifying these will emit a warning and use standard flavor.
281
291
 
282
292
  **Behavior**:
293
+
283
294
  - Affects how certain rules behave, particularly:
284
295
  - MD042: Empty links handling (MkDocs allows certain shorthand links)
285
296
  - MD052: Reference-style links and images (MkDocs has special syntax)
@@ -287,6 +298,7 @@ flavor = "mkdocs" # Use MkDocs flavor
287
298
  - Some rules may be automatically adjusted based on the flavor
288
299
 
289
300
  **Usage Notes**:
301
+
290
302
  - Choose the flavor that matches your documentation system
291
303
  - MkDocs flavor is useful for projects using MkDocs or Material for MkDocs
292
304
  - Currently only `standard` and `mkdocs` have implementation differences
@@ -324,6 +336,7 @@ rumdl check --disable MD001,MD013 --exclude "temp/**" docs/
324
336
  ```
325
337
 
326
338
  The final configuration will be:
339
+
327
340
  - `disable`: `["MD001", "MD013"]` (CLI overrides file)
328
341
  - `exclude`: `["temp/**"]` (CLI overrides file)
329
342
  - Paths: `["docs/"]` (CLI argument)
@@ -365,6 +378,7 @@ respect_gitignore = true
365
378
  ```
366
379
 
367
380
  File selection process:
381
+
368
382
  1. Start with: `docs/guide.md`, `docs/temp/test.md`, `README.md`, `notes.draft.md`
369
383
  2. Apply includes: `docs/guide.md`, `docs/temp/test.md`, `README.md` (notes.draft.md excluded)
370
384
  3. Apply excludes: `docs/guide.md`, `README.md` (docs/temp/test.md excluded)
@@ -67,6 +67,7 @@ preferred indentation pattern (2, 3, 4 spaces, etc.) and ensures consistency thr
67
67
  ## Configuration
68
68
 
69
69
  This rule has no configuration options. MD005 automatically detects and adapts to your indentation pattern:
70
+
70
71
  - Top-level items should always start at column 0
71
72
  - Nested items align with their parent's text content OR use the detected indent increment
72
73
  - The rule intelligently detects whether you're using 2, 3, 4, or other space increments
@@ -55,7 +55,8 @@ MD013:
55
55
  code_block_line_length: 150 # Different limit for code blocks (default: uses line_length)
56
56
  stern: false # Stricter checking without exceptions (default: false)
57
57
  strict: false # Disables exceptions for URLs, etc. (default: false)
58
- enable_reflow: false # Enable automatic text reflow/wrapping (default: false)
58
+ reflow: false # Enable automatic text reflow/wrapping (default: false)
59
+ reflow_mode: "default" # Reflow mode: "default", "normalize", or "sentence_per_line" (default: "default")
59
60
  ```
60
61
 
61
62
  ### Configuration options explained
@@ -68,7 +69,8 @@ MD013:
68
69
  - `code_block_line_length`: Optional separate limit for code blocks
69
70
  - `stern`: When true, applies stricter checking without common exceptions
70
71
  - `strict`: When true, disables exceptions for URLs and other special content
71
- - `enable_reflow`: When true, enables automatic text reflow to wrap long lines intelligently
72
+ - `reflow`: When true, enables automatic text reflow to wrap long lines intelligently
73
+ - `reflow_mode`: Controls how text is reflowed when `reflow` is true (see Reflow Modes section below)
72
74
 
73
75
  ### Example with different limits
74
76
 
@@ -82,6 +84,7 @@ MD013:
82
84
  ```
83
85
 
84
86
  With this configuration:
87
+
85
88
  - Regular text must stay within 80 characters
86
89
  - Headings can extend up to 100 characters
87
90
  - Code blocks can have lines up to 120 characters
@@ -100,7 +103,7 @@ def very_long_function_name_that_demonstrates_the_code_block_line_length_configu
100
103
 
101
104
  ## Automatic fixes
102
105
 
103
- When `enable_reflow` is set to `true`, this rule can automatically wrap long lines while preserving Markdown formatting:
106
+ When `reflow` is set to `true`, this rule can automatically wrap long lines while preserving Markdown formatting:
104
107
 
105
108
  - Intelligently breaks lines at appropriate points
106
109
  - Preserves bold, italic, links, code spans, and other Markdown elements
@@ -108,17 +111,79 @@ When `enable_reflow` is set to `true`, this rule can automatically wrap long lin
108
111
  - Preserves hard line breaks (two trailing spaces)
109
112
  - Does not wrap code blocks, tables, headings, or reference definitions
110
113
 
114
+ ### Reflow Modes
115
+
116
+ The `reflow_mode` option controls how text is reformatted when `reflow` is true:
117
+
118
+ #### `default` mode
119
+
120
+ Standard text wrapping that breaks lines at word boundaries to fit within the configured line length.
121
+
122
+ ```yaml
123
+ MD013:
124
+ line_length: 80
125
+ reflow: true
126
+ reflow_mode: "default"
127
+ ```
128
+
129
+ #### `normalize` mode
130
+
131
+ Normalizes all paragraph text to consistently wrap at the configured line length, removing irregular line breaks.
132
+
133
+ ```yaml
134
+ MD013:
135
+ line_length: 80
136
+ reflow: true
137
+ reflow_mode: "normalize"
138
+ ```
139
+
140
+ This mode is useful for standardizing documents with inconsistent line wrapping.
141
+
142
+ #### `sentence_per_line` mode
143
+
144
+ Enforces one sentence per line, making diffs cleaner and easier to review. This mode:
145
+
146
+ - Detects sentence boundaries (periods, exclamation marks, question marks)
147
+ - Handles common abbreviations (Mr., Dr., etc.) without breaking
148
+ - Preserves decimal numbers and ellipses
149
+ - Works with markdown formatting
150
+
151
+ ```yaml
152
+ MD013:
153
+ line_length: 80
154
+ reflow: true
155
+ reflow_mode: "sentence_per_line"
156
+ ```
157
+
158
+ Example transformation:
159
+
160
+ ```markdown
161
+ # Before
162
+ This is the first sentence. This is the second sentence. And this is the third.
163
+
164
+ # After
165
+ This is the first sentence.
166
+ This is the second sentence.
167
+ And this is the third.
168
+ ```
169
+
170
+ This mode is particularly useful for:
171
+
172
+ - Technical documentation where each sentence often contains a single concept
173
+ - Documents maintained in version control where sentence-level diffs are clearer
174
+ - Collaborative writing where different authors work on different sentences
175
+
111
176
  ### Example with automatic reflow
112
177
 
113
178
  ```yaml
114
179
  MD013:
115
180
  line_length: 80
116
- enable_reflow: true
181
+ reflow: true
117
182
  ```
118
183
 
119
184
  With this configuration, long lines will be automatically wrapped to fit within 80 characters while maintaining proper Markdown formatting.
120
185
 
121
- **Note**: When `enable_reflow` is `false` (default), automatic fixes are not available and you'll need to manually wrap long lines.
186
+ **Note**: When `reflow` is `false` (default), automatic fixes are not available and you'll need to manually wrap long lines.
122
187
 
123
188
  ## Learn more
124
189
 
@@ -56,6 +56,7 @@ This rule has no configuration options.
56
56
  ## Special cases
57
57
 
58
58
  This rule correctly handles:
59
+
59
60
  - Emoji hashtags like #️⃣ and #⃣ (not treated as headings)
60
61
  - Regular hashtags like #tag or #123 (not treated as headings)
61
62
  - Only actual heading syntax triggers this rule
@@ -54,6 +54,7 @@ This rule has no configuration options.
54
54
  ## Automatic fixes
55
55
 
56
56
  This rule automatically adds spaces where they're missing:
57
+
57
58
  - After the opening # symbols
58
59
  - Before the closing # symbols
59
60
 
@@ -54,6 +54,7 @@ This rule has no configuration options.
54
54
  ## Automatic fixes
55
55
 
56
56
  This rule automatically removes extra spaces:
57
+
57
58
  - Leaves only one space after the opening # symbols
58
59
  - Leaves only one space before the closing # symbols
59
60
 
@@ -76,6 +76,7 @@ MD022:
76
76
  ## Automatic fixes
77
77
 
78
78
  This rule automatically adds the required number of blank lines:
79
+
79
80
  - Before headings (except at the start of a document)
80
81
  - After headings (except at the end of a document)
81
82
 
@@ -64,6 +64,7 @@ MD025:
64
64
  ## Automatic fixes
65
65
 
66
66
  This rule will:
67
+
67
68
  - Convert extra main titles to the next heading level (H1 → H2)
68
69
  - Preserve the document's first main title
69
70
  - Maintain the relative hierarchy of subsequent headings
@@ -61,6 +61,7 @@ MD026:
61
61
  ## Automatic fixes
62
62
 
63
63
  This rule will:
64
+
64
65
  - Remove periods, commas, and semicolons from heading endings
65
66
  - Preserve question marks for questions ("What is Markdown?")
66
67
  - Keep exclamation points for emphasis ("Important!")
@@ -59,6 +59,7 @@ MD029:
59
59
  ## Automatic fixes
60
60
 
61
61
  This rule will:
62
+
62
63
  - Renumber all list items according to your chosen style
63
64
  - Preserve list item content and indentation
64
65
  - Handle nested lists independently
@@ -60,6 +60,7 @@ MD030:
60
60
  ## Automatic fixes
61
61
 
62
62
  This rule will:
63
+
63
64
  - Adjust spacing after list markers to match your configuration
64
65
  - Preserve list item content and structure
65
66
  - Handle single-line and multi-line items according to their specific settings
@@ -90,6 +90,7 @@ When `list_items` is false:
90
90
  ## Automatic fixes
91
91
 
92
92
  This rule automatically adds blank lines:
93
+
93
94
  - Before code blocks that don't have one
94
95
  - After code blocks that don't have one
95
96
 
@@ -58,6 +58,7 @@ This rule has no configuration options. Lists should always be surrounded by bla
58
58
  ## Automatic fixes
59
59
 
60
60
  This rule will:
61
+
61
62
  - Add a blank line before lists that follow other content
62
63
  - Add a blank line after lists that precede other content
63
64
  - Handle nested lists correctly (only the outermost list needs surrounding blank lines)
@@ -98,6 +98,7 @@ This rule can automatically remove HTML tags when no allowed elements are config
98
98
  ## What's allowed
99
99
 
100
100
  These are **not** considered HTML and are allowed:
101
+
101
102
  - HTML comments: `<!-- This is a comment -->`
102
103
  - Email autolinks: `<user@example.com>`
103
104
  - URL autolinks: `<https://example.com>`
@@ -66,6 +66,7 @@ This rule has no configuration options.
66
66
  ## Automatic fixes
67
67
 
68
68
  This rule will automatically remove spaces between:
69
+
69
70
  - Opening emphasis markers and the first character
70
71
  - Last character and closing emphasis markers
71
72
  - Preserves all other spacing in your text
@@ -60,6 +60,7 @@ This rule has no configuration options.
60
60
  ## Automatic fixes
61
61
 
62
62
  This rule will:
63
+
63
64
  - Remove spaces after opening backticks
64
65
  - Remove spaces before closing backticks
65
66
  - Preserve spaces within the code itself
@@ -66,6 +66,7 @@ This rule has no configuration options.
66
66
  ## Automatic fixes
67
67
 
68
68
  This rule will:
69
+
69
70
  - Remove spaces after opening brackets `[`
70
71
  - Remove spaces before closing brackets `]`
71
72
  - Work on both regular links and image alt text
@@ -75,6 +75,7 @@ MD041:
75
75
  ## Automatic fixes
76
76
 
77
77
  When enabled, this rule will:
78
+
78
79
  - Add a generic `# Title` heading at the beginning of documents that lack one
79
80
  - You should replace this with a meaningful title for your document
80
81
 
@@ -56,6 +56,7 @@ This rule has no configuration options.
56
56
  ## Automatic fixes
57
57
 
58
58
  When enabled, this rule will:
59
+
59
60
  - Add generic text "Link" for empty link text
60
61
  - Add placeholder "#" for empty URLs
61
62
  - Replace these placeholders with meaningful content after fixing
@@ -94,6 +94,7 @@ MD043:
94
94
  ## Automatic fixes
95
95
 
96
96
  When enabled, this rule will:
97
+
97
98
  - Replace incorrect headings with the required ones
98
99
  - Preserve heading content when using regex patterns
99
100
  - Maintain document flow and readability
@@ -68,6 +68,7 @@ MD044:
68
68
  ## Automatic fixes
69
69
 
70
70
  When enabled, this rule will:
71
+
71
72
  - Replace all incorrect capitalizations with the proper version
72
73
  - Preserve the context and meaning of your text
73
74
  - Work across headings, paragraphs, and lists
@@ -76,6 +76,7 @@ This would change the fix behavior to:
76
76
  ## Automatic fixes
77
77
 
78
78
  When enabled, this rule will:
79
+
79
80
  - Add generic "Image" text for missing alt text
80
81
  - You must replace this with meaningful descriptions
81
82
  - Consider what information the image conveys
@@ -86,6 +86,7 @@ MD046:
86
86
  ## Automatic fixes
87
87
 
88
88
  When enabled, this rule will:
89
+
89
90
  - Convert all code blocks to match your configured style
90
91
  - Preserve code content and language identifiers
91
92
  - Maintain proper spacing around blocks
@@ -93,11 +94,13 @@ When enabled, this rule will:
93
94
  ## Style comparison
94
95
 
95
96
  **Fenced code blocks** (recommended):
97
+
96
98
  - Support syntax highlighting with language identifiers
97
99
  - Easier to copy and paste
98
100
  - More visible boundaries
99
101
 
100
102
  **Indented code blocks**:
103
+
101
104
  - Traditional Markdown style
102
105
  - No language identifier support
103
106
  - Must indent each line with 4 spaces or 1 tab
@@ -68,6 +68,7 @@ This rule has no configuration options.
68
68
  ## Automatic fixes
69
69
 
70
70
  When enabled, this rule will:
71
+
71
72
  - Add a newline if the file doesn't end with one
72
73
  - Remove extra newlines if there are multiple
73
74
  - Ensure exactly one newline at the end