From 3fe45e9cbb9ef8a13c5ee21f7bf7ba1f6fe8dc45 Mon Sep 17 00:00:00 2001 From: Milo Todt Date: Wed, 16 Jan 2019 16:09:07 -0800 Subject: [PATCH] Added cheatsheets to menu --- lib/main-menu.js | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/lib/main-menu.js b/lib/main-menu.js index 05921347c..dcd85217c 100644 --- a/lib/main-menu.js +++ b/lib/main-menu.js @@ -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') } + } + ] } ] }