Merge table columns if two pipes with with no space are next to each other.

This commit is contained in:
2019-03-14 14:49:03 +00:00
parent 5ac7422d29
commit 5428422f58

View File

@@ -65,7 +65,7 @@ public class MarkdownMacro extends BaseMacro implements Macro {
.set(HtmlRenderer.PERCENT_ENCODE_URLS, true) .set(HtmlRenderer.PERCENT_ENCODE_URLS, true)
// for full GFM table compatibility add the following table extension options: // for full GFM table compatibility add the following table extension options:
.set(TablesExtension.COLUMN_SPANS, false) .set(TablesExtension.COLUMN_SPANS, true)
.set(TablesExtension.APPEND_MISSING_COLUMNS, true) .set(TablesExtension.APPEND_MISSING_COLUMNS, true)
.set(TablesExtension.DISCARD_EXTRA_COLUMNS, true) .set(TablesExtension.DISCARD_EXTRA_COLUMNS, true)
.set(TablesExtension.HEADER_SEPARATOR_COLUMN_MATCH, true) .set(TablesExtension.HEADER_SEPARATOR_COLUMN_MATCH, true)