Skip to content

Instantly share code, notes, and snippets.

@hotohoto
Created November 24, 2018 05:26
Show Gist options
  • Save hotohoto/ba01d4b53edeef1005181ee95f6dfb13 to your computer and use it in GitHub Desktop.
Save hotohoto/ba01d4b53edeef1005181ee95f6dfb13 to your computer and use it in GitHub Desktop.
script to remove vertical tabs (linebreak in a paragraph) in google docs

(Tentative)

function removeVerticalTabs() {
  var body = DocumentApp.getActiveDocument().getBody();
  var bodyText = body.getText();
  bodyText = bodyText.replace( /\r/g, "\n" );
  body.setText( bodyText );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment