diff --git a/src/main/menu/actions/file.js b/src/main/menu/actions/file.js index b743735a..23d67596 100644 --- a/src/main/menu/actions/file.js +++ b/src/main/menu/actions/file.js @@ -194,7 +194,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) {