Skip to main content

scripts-fix-md024-duplicate-headings

#!/usr/bin/env python3 """

CODITECT Markdown Quality System Copyright © 2025 AZ1.AI INC - All Rights Reserved

This software is proprietary and confidential. Unauthorized copying, distribution, or use is strictly prohibited.

CODITECT owns all intellectual property rights to this implementation. """

MD024: Multiple headings with the same content

import re from pathlib import Path

def fix_md024(content): """Add numeric suffixes to duplicate headings.""" lines = content.split('\n') result = [] fixed = 0 heading_counts = {}

for line in lines:
if match := re.match(r'^(#{1,6})\s+(.+)', line):
hashes, text = match.groups()
# Remove any existing numeric suffix
clean_text = re.sub(r'\s+\(\d+\)$', '', text)

if clean_text in heading_counts:
heading_counts[clean_text] += 1
result.append(f"{hashes} {clean_text} ({heading_counts[clean_text]})")
fixed += 1
else:
heading_counts[clean_text] = 1
result.append(line)
else:
result.append(line)

return '\n'.join(result), fixed

def process_file(file_path, dry_run=False): try: with open(file_path, 'r', encoding='utf-8') as f: content = f.read() fixed_content, count = fix_md024(content) if count > 0 and not dry_run: with open(file_path, 'w', encoding='utf-8') as f: f.write(fixed_content) return count except Exception as e: print(f"Error: {e}") return 0

if name == 'main': import argparse parser = argparse.ArgumentParser(description='Fix MD024: Duplicate headings') parser.add_argument('paths', nargs='*', default=['.']) parser.add_argument('--dry-run', action='store_true') args = parser.parse_args()

total = 0
for path_str in args.paths:
path = Path(path_str)
if path.is_file() and path.suffix == '.md':
count = process_file(path, args.dry_run)
if count:
print(f"{'[DRY RUN] ' if args.dry_run else ''}Fixed {count} issues in {path}")
total += count
elif path.is_dir():
for md_file in path.rglob('*.md'):
count = process_file(md_file, args.dry_run)
if count:
print(f"{'[DRY RUN] ' if args.dry_run else ''}Fixed {count} issues in {md_file}")
total += count
print(f"\nTotal: {total} issues fixed")