Zero-dependency Python linter for detecting and fixing misaligned ASCII art boxes in documentation.
AI-generated ASCII flowcharts and diagrams often have subtle formatting errors where box borders are misaligned by 1-2 characters. This breaks visual integrity and makes documentation harder to read.
ascii-guard automatically detects and fixes these alignment issues, ensuring your ASCII art looks perfect.
- π Minimal dependencies - Zero for Python 3.11+, one tiny dep for Python 3.10 (
tomli) - πΎ Tiny footprint - Lightweight and fast
- π Minimal supply chain risk - Pure stdlib on 3.11+
- β‘ Quick startup - No import overhead
- π¦ Simple installation - One command, automatic dependency handling
- π Python API - Stable programmatic interface for integration into pipelines and scripts
- π‘οΈ Type-safe - Full mypy strict mode
- β Well tested - Comprehensive test coverage
We recommend using uv for the fastest installation experience, but pip and pipx are fully supported alternatives. uv provides faster dependency resolution and better reproducibility, while pip and pipx work with any standard Python environment.
# Install ascii-guard
uv tool install ascii-guardNote: If
uvis not installed, you may install it with:curl -LsSf https://astral.sh/uv/install.sh | sh
pip install ascii-guardpipx install ascii-guardThat's it! No other dependencies needed.
ascii-guard lint README.md
ascii-guard lint docs/**/*.mdascii-guard fix README.md
ascii-guard fix --dry-run docs/guide.md # Preview changes firstBefore (misaligned):
βββββββββββββββββββββββ
β Box Content β
ββββββββββββββββββββββ β Missing one character!
After (fixed):
βββββββββββββββββββββββ
β Box Content β
βββββββββββββββββββββββ β Perfect alignment β
Before (multiple alignment issues):
ββββββββββββββββ
β Start β
ββββββββ¬ββββββββ
β
ββββββββΌββββββββ
β Step β β Right border misaligned
ββββββββ¬ββββββββ
β
ββββββββΌββββββββ
β End ββ β Duplicate right border
βββββββββββββββ β Broken bottom right corner
After (all boxes aligned):
ββββββββββββββββ
β Start β
ββββββββ¬ββββββββ
β
ββββββββΌββββββββ
β Step β
ββββββββ¬ββββββββ
β
ββββββββΌββββββββ
β End β
ββββββββββββββββ
ascii-guard automatically detects and fixes alignment issues across multiple boxes, nested structures, and complex flowcharts.
Need to show intentionally broken boxes in your docs? Use ignore markers:
**β Common Mistake (don't do this):**
<!-- ascii-guard-ignore-next -->
βββββββββββββββββββββββ
β Box Content β
ββββββββββββββββββββββ β Misaligned on purpose for demonstration
**β
Correct Way:**
βββββββββββββββββββββββ
β Box Content β
βββββββββββββββββββββββ β Perfect alignmentThe ignore markers are invisible in rendered markdown but tell ascii-guard to skip validation. Perfect for:
- Before/after comparisons
- Tutorial examples showing common mistakes
- Documentation with intentionally broken examples
See USAGE.md for complete syntax and examples.
ascii-guard supports Unicode box-drawing characters:
| Type | Characters | Description |
|---|---|---|
| Horizontal | β (U+2500) |
Horizontal line |
| Vertical | β (U+2502) |
Vertical line |
| Corners | β β β β |
Standard corners |
| T-junctions | β β€ β¬ β΄ |
Connection points |
| Cross | βΌ |
Four-way intersection |
| Heavy lines | β β β β β β |
Bold variants |
| Double lines | β β β β β β |
Double-line variants |
ascii-guard checks for:
- Vertical alignment - All
βcharacters in a column align - Horizontal alignment - All
βcharacters connect properly - Corner correctness - Corner characters match adjacent lines
- Width consistency - Top, middle, and bottom borders match
- Content fit - Content stays within box borders
ascii-guard provides a stable Python API for programmatic use. Perfect for integrating into documentation pipelines, CI/CD scripts, or custom tooling.
from ascii_guard import lint_file, fix_file, detect_boxes
# Lint a file for issues
result = lint_file("README.md")
if result.has_errors:
print(f"Found {len(result.errors)} alignment errors")
for error in result.errors:
print(f" Line {error.line + 1}: {error.message}")
# Auto-fix alignment issues
result = fix_file("README.md", dry_run=True) # Preview first
print(f"Would fix {result.boxes_fixed} boxes")
# Detect boxes without validation
boxes = detect_boxes("docs/guide.md")
print(f"Found {len(boxes)} ASCII art boxes")Available functions:
lint_file()- Lint a file for ASCII art alignment issuesfix_file()- Fix alignment issues in a filedetect_boxes()- Detect ASCII art boxes without validationvalidate_box()- Validate a single Box objectfix_box()- Fix a single Box object
Data models: Box, ValidationError, LintResult, FixResult
π Full API documentation: See API Reference for complete details, type signatures, and advanced examples.
We welcome contributions! Here's how to get started:
Prerequisites:
- Python 3.10+
- uv - Fast Python package manager
# Install uv
curl -LsSf https://astral.sh/uv/install.sh | sh
# Fork and clone the repository
git clone https://github.com/YOUR-USERNAME/ascii-guard.git
cd ascii-guard
# One-step setup (creates venv, installs deps, configures hooks)
./setup.sh
# Use uv run for commands
uv run pytest # Run tests
uv run ruff check . # Lint code
uv run mypy src/ # Type check
# Make your changes and submit a PRFor detailed development guide, see docs/DEVELOPMENT.md
For contribution guidelines, see CONTRIBUTING.md
Apache License 2.0 - see LICENSE for details.
Copyright 2025 Oliver Ratzesberger
- Repository: https://github.com/fxstein/ascii-guard
- Issues: https://github.com/fxstein/ascii-guard/issues
- PyPI: https://pypi.org/project/ascii-guard/
- Documentation:
- User Guide - Complete usage documentation
- Python API Reference - Complete API documentation
- Development Guide - Setup, workflow, architecture
- FAQ - Frequently asked questions
Inspired by the need for better ASCII art formatting in AI-generated documentation.
Built with β€οΈ using only Python's standard library.
Note: ascii-guard is stable and actively maintained. Contributions and feedback are welcome!