Skip to content

Instantly share code, notes, and snippets.

View RBoelter's full-sized avatar
:octocat:
May the forks be with you!

Ronny Bölter RBoelter

:octocat:
May the forks be with you!
View GitHub Profile
@RBoelter
RBoelter / HtmlCombiner.py
Last active October 26, 2025 02:43
Markdown & Mermaid to HTLM & SVG Converter (run: python3 export.py)
import re
from pathlib import Path
class HtmlCombiner:
def __init__(self, export_dir: Path):
self.export_dir = export_dir
self.template = self._get_html_template()
def create_index(self):
sidebar_content = self._read_file_content("_sidebar.html")