mirror of
https://github.com/micropython/micropython.git
synced 2025-12-15 17:30:14 +01:00
docs: Label table columns as "CPython output" and "MicroPython output".
Abbreviating these doesn't really save space in the docs, as the code blocks in the next row are always wider than the column headings. Signed-off-by: Angus Gratton <angus@redyak.com.au>
This commit is contained in:
committed by
Damien George
parent
a79e1fd501
commit
fb2b638ba0
@@ -260,7 +260,7 @@ def gen_rst(results):
|
||||
output_cpy = ("::\n\n" if output_cpy != "" else "") + output_cpy
|
||||
output_upy = indent(output.output_upy, TAB).rstrip()
|
||||
output_upy = ("::\n\n" if output_upy != "" else "") + output_upy
|
||||
table = gen_table([["CPy output:", output_cpy], ["uPy output:", output_upy]])
|
||||
table = gen_table([["CPython output:", output_cpy], ["MicroPython output:", output_upy]])
|
||||
rst.write(table)
|
||||
|
||||
template = open(INDEXTEMPLATE, "r")
|
||||
|
||||
Reference in New Issue
Block a user