Hi,
I'm trying to delete all CTMarkup of a .docx file.
I already managed to rename all CTBookmarks of a docx with a visitor using TraversalUtil, and I was wondering if I could write a visitor that would delete elements (instead of modifying them).
How would you do that?
My first idea was to write this visitor, but I'm a bit stuck on how to do it the clean way :
public final class DeleteCTMarkupsVisitor ...