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