1
0
mirror of https://github.com/BoostIo/Boostnote synced 2025-12-13 01:36:22 +00:00

Merge pull request #1256 from mslourens/export-html

first attempt to export html
This commit is contained in:
Kazz Yokomizo
2017-12-28 10:38:55 +09:00
committed by GitHub
6 changed files with 48 additions and 11 deletions

View File

@@ -108,6 +108,13 @@ const file = {
mainWindow.webContents.send('list:isMarkdownNote')
mainWindow.webContents.send('export:save-md')
}
},
{
label: 'HTML (.html)',
click () {
mainWindow.webContents.send('list:isMarkdownNote')
mainWindow.webContents.send('export:save-html')
}
}
]
},