Skip to content

Latest commit

 

History

History
40 lines (28 loc) · 449 Bytes

testdoc.md

File metadata and controls

40 lines (28 loc) · 449 Bytes

Example markdown doc

Python generated table

Content :

input = range(8)
table = [ list(input), [x*3 for x in input] ]

print(make_table(table))

Result :

#!exec
input = range(8)
table = [ list(input), [x*3 for x in input] ]

print(make_table(table))

Ascii drawing to svgbob

Content :

+---+    +---+
| a |--->| b |
+---+    +---+

Result:

+---+    +---+
| a |--->| b |
+---+    +---+