initial commit

This commit is contained in:
2026-08-15 18:51:43 +02:00
commit 8a6a1fcf07
119 changed files with 11326 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
"""tools/generate_ansi.py - starting point / font reference for src/lib/ansiArt.ts.
See SPEC.md section 9 for why precomputed HTML is used instead of a live ANSI parser."""
FONT = {
'A': [".###.","#...#","#...#","#####","#...#","#...#","#...#"],
'B': ["####.","#...#","#...#","####.","#...#","#...#","####."],
'S': [".####","#....","#....",".###.","....#","....#","####."],
' ': ["....." for _ in range(7)],
}
if __name__ == "__main__":
print("Reference font + starting point. Full logic documented in SPEC.md/PLAN.md.")