Skip to content

Instantly share code, notes, and snippets.

@narthur
Created June 11, 2015 15:24
Show Gist options
  • Save narthur/e7ce4da9083f96110197 to your computer and use it in GitHub Desktop.
Save narthur/e7ce4da9083f96110197 to your computer and use it in GitHub Desktop.
InDesign script for converting tables to text
// Based on https://forums.adobe.com/thread/578555
var myDoc=app.activeDocument;
tableList = myDoc.textFrames.everyItem().tables.everyItem();
tableList.convertToText("\t","\r");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment