As many of our checker results produce a table of qualifying finds, I looked at converting mine to produce markdown tables. But alas, Groundspeak's implementation of Markdown has "extra mode" turned off, so:
Tables are not supported
Footnotes are not supported
Abbreviations are not supported
Embedded HTML is not supported
However, although tables are not supported directly, monospaced font is, so we can still make tables the hard way. Either:
Delimit the data with backticks: `this text will be monospaced`
or:
Indent with 4 spaces or a tab: This is a normal paragraph.
This will be a preformatted
code block.
Hope this helps!
Tom