Skip to content

Instantly share code, notes, and snippets.

View CharlesDerek's full-sized avatar
🎯
Focusing

CharlesDerek CharlesDerek

🎯
Focusing
View GitHub Profile
@pkorpine
pkorpine / save_as_pdf_gs
Last active November 17, 2023 20:05
"Save as PDF" script for Google Docs
// Saves the current document in Google Docs as PDF to the same folder.
// Code from https://stackoverflow.com/questions/28312992/convert-google-doc-to-pdf-using-google-script-editior
// Just added onOpen() to add the script to the menubar.
function onOpen() {
var ui = DocumentApp.getUi();
// Or DocumentApp or FormApp.
ui.createMenu('My scripts')
.addItem('Convert to PDF', 'convertPDF')
.addToUi();