aboutsummaryrefslogtreecommitdiff
path: root/syntax/def_PRINTABLES.py
blob: 4fc41b42ab7349b40ef64b7c7eb0e46614d7263e (plain)
  1. #!/usr/bin/python3
  2. # Copyright 2025, Jonas Smedegaard <dr@jones.dk>
  3. # SPDX-License-Identifier: GPL-3+
  4. from os.path import basename, splitext
  5. from railroad import *
  6. Diagram(
  7. "[[:graph:]]+",
  8. type="complex"
  9. ).writeStandalone(
  10. open(splitext(basename(__file__))[0] + ".svg", "w").write)