Skip to content

Instantly share code, notes, and snippets.

@karunru
karunru / mdview
Last active February 10, 2026 10:10
mdview: Markdown viewer with mermaid-ascii support (glow wrapper)
#!/usr/bin/env python3
"""Markdown viewer that converts mermaid diagrams to ASCII art via mermaid-ascii, then displays with glow."""
import os
import re
import subprocess
import sys
import tempfile
MERMAID_BLOCK_RE = re.compile(