From 20a7517bf51a5ed1b36d0c134d1bf3f5d01b2e4a Mon Sep 17 00:00:00 2001 From: Jonas Smedegaard Date: Sat, 17 May 2025 16:34:36 +0200 Subject: add chapter on Markdown and annotation --- def_SPACE.py | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100755 def_SPACE.py (limited to 'def_SPACE.py') diff --git a/def_SPACE.py b/def_SPACE.py new file mode 100755 index 0000000..9a6353b --- /dev/null +++ b/def_SPACE.py @@ -0,0 +1,14 @@ +#!/usr/bin/python3 + +# Copyright 2025, Jonas Smedegaard +# SPDX-License-Identifier: GPL-3+ + +from os.path import basename, splitext +from railroad import * + +Diagram( + Start("complex"), + "' '", + End("complex") +).writeStandalone( + open(splitext(basename(__file__))[0] + ".svg", "w").write) -- cgit v1.2.3