diff --git a/main.js b/main.js index f9b56f5c..e26f07f7 100644 --- a/main.js +++ b/main.js @@ -16,7 +16,7 @@ function getText(textOrFile, convertMarkdown) { // Convert Markdown to HTML if (convertMarkdown) { - const converter = new showdown.Converter() + const converter = new showdown.Converter({tables: true}) text = converter.makeHtml(text) }