From 0968966f015058980ed5452dd10147daf2d5d3ab Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20Felipe=20Chiarelli=20Bourscheid?= Date: Thu, 27 May 2021 13:26:19 -0300 Subject: [PATCH] Changing the output format to gfm instead markdown due table missformating during the import --- src/main/menu/actions/file.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/menu/actions/file.js b/src/main/menu/actions/file.js index fd892c7e..d8795cac 100644 --- a/src/main/menu/actions/file.js +++ b/src/main/menu/actions/file.js @@ -189,7 +189,7 @@ const noticePandocNotFound = win => { const openPandocFile = async (windowId, pathname) => { try { - const converter = pandoc(pathname, 'markdown') + const converter = pandoc(pathname, 'gfm') const data = await converter() ipcMain.emit('app-open-markdown-by-id', windowId, data) } catch (err) {