aboutsummaryrefslogtreecommitdiff
path: root/prop_html2md.go
diff options
context:
space:
mode:
Diffstat (limited to 'prop_html2md.go')
-rw-r--r--prop_html2md.go9
1 files changed, 6 insertions, 3 deletions
diff --git a/prop_html2md.go b/prop_html2md.go
index a65cc6b..2435f23 100644
--- a/prop_html2md.go
+++ b/prop_html2md.go
@@ -99,9 +99,12 @@ func handlePlugins(conv *md.Converter, rootArgv *rootT) *md.Converter {
if rootArgv.PluginStrikethrough {
conv.Use(plugin.Strikethrough(""))
}
- // if rootArgv.PluginTable {
- // conv.Use(plugin.Table())
- // }
+ if rootArgv.PluginTable {
+ conv.Use(plugin.Table())
+ }
+ if rootArgv.PluginTableCompat {
+ conv.Use(plugin.TableCompat())
+ }
if rootArgv.PluginTaskListItems {
conv.Use(plugin.TaskListItems())
}