Skip to content

Instantly share code, notes, and snippets.

@rheajt
Last active December 6, 2017 13:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rheajt/9621b1f56678be54fab51dd26c18a35a to your computer and use it in GitHub Desktop.
Save rheajt/9621b1f56678be54fab51dd26c18a35a to your computer and use it in GitHub Desktop.
google apps script project
function onOpen() {
DocumentApp.getUi()
.createAddonMenu()
.addItem('run', 'spaceErase')
.addToUi();
}
function spaceErase() {
var body = DocumentApp.getActiveDocument().getBody();
body.replaceText('(\\s{2})', ' ');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment