spring cleaning and refactoring

This commit is contained in:
Richard Macias
2026-02-14 15:02:53 -06:00
parent 5c752624af
commit 3851aff4c3
21 changed files with 1159 additions and 595 deletions

View File

@@ -5,12 +5,6 @@ from pathlib import Path
def stitch_markdown_files(markdown_files: list[str], output_file: str = "README.md") -> None:
"""Concatenate markdown files with double newlines between sections.
Args:
markdown_files: List of paths to markdown files to combine
output_file: Path to write the combined output
"""
combined_content = []
for file in markdown_files: