summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorRob Austein <sra@hactrn.net>2019-03-19 18:03:25 +0000
committerRob Austein <sra@hactrn.net>2019-03-19 18:03:25 +0000
commitc439a6557336e6971688f2a4cc21e0fc2d43a1ed (patch)
tree691dd0c4358912f4d091bdc102d8461eaa3ac44d /tools
parente061ad3c5a99bde1b149f3d9d295fa92afa0de34 (diff)
Notes on table conversion.
Diffstat (limited to 'tools')
-rwxr-xr-xtools/trac2md.py20
1 files changed, 20 insertions, 0 deletions
diff --git a/tools/trac2md.py b/tools/trac2md.py
index ab0bf79..85fdd79 100755
--- a/tools/trac2md.py
+++ b/tools/trac2md.py
@@ -129,6 +129,26 @@ def WikiToMD(content):
line = line.replace("}}}", "```")
if not code_block:
#
+ # Want to convert tables. References:
+ # https://github.github.com/gfm/#tables-extension-
+ # https://permatrac.noc.ietf.org/wiki/WikiFormatting#Tables
+ #
+ # Table start: line containing "||"
+ # Table end: blank line?
+ #
+ # Figuring out whether there's a real header line is fun,
+ # trac doesn't require one, markdown does. Guess we can
+ # add a dummy header if no better idea. Markdown requires
+ # delimiter line, which we add immediately after the
+ # header, both appear to be mandatory. Trac can have
+ # label cells anywhere, not just in header, might need to
+ # add "*" to those or just ignore the issue.
+ # Justification we can sort of figure out from the header,
+ # if the rows do anything different, ouch, because
+ # markdown specifies in delimiter line.
+ #
+
+ #
# Convert bullet lists. The start and end of a list needs
# an empty line. wikiformat uses both '*' and '-' for its
# lists. However, markdown only supports '-'.