Convert a Markdown blog post into a standalone HTML page and insert a matching list entry into index.html. Use when adding a new .md post to this blog and you need both the HTML output and the index list updated.
Convert a single Markdown file to a styled HTML post and insert a new list item into the blog index.
index.html path.scripts/md_to_html_merge.py with --md and --index (and optional overrides).index.html.python md-to-html-merge/scripts/md_to_html_merge.py `
--md c:\Development\projects\blog\MyPost.md `
--index c:\Development\projects\blog\index.html
--out: Output HTML path (defaults to the Markdown filename with )..html--title: Override the title.--date: Override the date (YYYY-MM-DD).title and date when present.# Heading as title and today as date.markdown package if available, else try pandoc.<footer><p>© 2025 Keith Chen. All rights reserved.</p></footer><ul class="post-list"> in index.html.md_to_html_merge.py converts Markdown to HTML and updates index.html.