Skip to content

Instantly share code, notes, and snippets.

@veered
Created September 4, 2018 21:25
Show Gist options
  • Save veered/1a4dc4416f0f1097f150d81129efd612 to your computer and use it in GitHub Desktop.
Save veered/1a4dc4416f0f1097f150d81129efd612 to your computer and use it in GitHub Desktop.
Aspose Example
doc = com.aspose.words.Document.new(file_path)
doc_builder = com.aspose.words.DocumentBuilder.new(doc)
bookmarks = doc.getRange().getBookmarks()
bookmarks.each do |bookmark|
text = bookmark.getText()
bookmark.setText('')
doc_builder.moveToBookmark(bookmark.name)
doc_builder.insertHyperlink(text, "http://edit/?#{bookmark.name}", false);
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment