1
0
mirror of https://github.com/BoostIo/Boostnote synced 2026-01-27 15:47:15 +00:00

Merge pull request #2811 from MiloTodt/Add_cheatsheets_to_menu

Added cheatsheets to menu
This commit is contained in:
Junyoung Choi
2019-01-17 17:40:05 +09:00
committed by GitHub

View File

@@ -383,6 +383,27 @@ const help = {
{
label: 'Changelog',
click () { shell.openExternal('https://github.com/BoostIO/boost-releases') }
},
{
label: 'Cheatsheets',
submenu: [
{
label: 'Markdown',
click () { shell.openExternal('https://github.com/adam-p/markdown-here/wiki/Markdown-Cheatsheet') }
},
{
label: 'Latex',
click () { shell.openExternal('https://katex.org/docs/supported.html') }
},
{
label: 'HTML',
click () { shell.openExternal('https://htmlcheatsheet.com/') }
},
{
label: 'Boostnote',
click () { shell.openExternal('https://github.com/TobseF/boostnote-markdown-cheatsheet/blob/master/BOOSTNOTE_MARKDOWN_CHEAT_SHEET.md') }
}
]
}
]
}