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