mangini/gdocs2md

Script Editor not Script manager

Opened this issue · 5 comments

You have mentioned in the readme.md to go to tools -> script manager but there is tools-> script editor not manager

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

http://stackoverflow.com/a/37109424/604099

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.