Script Editor not Script manager
Opened this issue · 5 comments
MeghaStha commented
You have mentioned in the readme.md to go to tools -> script manager but there is tools-> script editor not manager
amarinelli commented
Noticed this as well. I guess in the 2 years since this repo was last updated things have changed in Google Docs?
tfoote commented
From a related thread for spreadsheets you need to add an onOpen function to add a menu
theneilkirk commented
Thanks tfoote. Here's the code if anyone is interested:
function onOpen() {
var ui = DocumentApp.getUi();
ui.createMenu('Markdown')
.addItem('Create', 'ConvertToMarkdown')
.addToUi();
}
stephffuller commented
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(); }
stephffuller commented
Found it. New script in same project. Works great. Thanks.