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

Add importer which imports files from .md/.txt

This commit is contained in:
asmsuechan
2017-06-13 11:06:00 +09:00
parent d1942868e4
commit c38a76d587
2 changed files with 64 additions and 0 deletions

View File

@@ -92,6 +92,20 @@ const file = {
{
type: 'separator'
},
{
label: 'Import from',
submenu: [
{
label: 'Plain Text, MarkDown (.txt, .md)',
click () {
mainWindow.webContents.send('import:file')
}
}
]
},
{
type: 'separator'
},
{
label: 'Delete Note',
accelerator: macOS ? 'Control+Backspace' : 'Control+Delete',