Open MeghaStha opened 9 years ago
Noticed this as well. I guess in the 2 years since this repo was last updated things have changed in Google Docs?
From a related thread for spreadsheets you need to add an onOpen function to add a menu
Thanks tfoote. Here's the code if anyone is interested:
function onOpen() {
var ui = DocumentApp.getUi();
ui.createMenu('Markdown')
.addItem('Create', 'ConvertToMarkdown')
.addToUi();
}
Thanks for this. Where would I put this function?
Thanks tfoote. Here's the code if anyone is interested:
function onOpen() { var ui = DocumentApp.getUi(); ui.createMenu('Markdown') .addItem('Create', 'ConvertToMarkdown') .addToUi(); }
Found it. New script in same project. Works great. Thanks.
You have mentioned in the readme.md to go to tools -> script manager but there is tools-> script editor not manager