Skip to content

Instantly share code, notes, and snippets.

@Neoglyph
Last active July 18, 2018 09:34
Show Gist options
  • Save Neoglyph/02bbb91638e9ce0f69be665a2bd76a13 to your computer and use it in GitHub Desktop.
Save Neoglyph/02bbb91638e9ce0f69be665a2bd76a13 to your computer and use it in GitHub Desktop.
InDesign script function - Rename tags
/**
*
* @prop XMLElement rootEl
* @prop string name
* @prop string replaceWith
*/
function replaceTag(rootEl, name, replaceWith) {
var elements = rootEl.xmlElements;
for(var i = 0; i < elements.length; ++i) {
if(elements[i].markupTag.name === name) {
elements[i].markupTag = replaceWith;
break;
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment