Ignore:
Timestamp:
2021-11-03T15:24:04+13:00 (2 years ago)
Author:
cstephen
Message:

Add support for JSON response to direct input queries. Cleanup other components.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • other-projects/the-macronizer/trunk/src/java/monogram/plugin/PluginODT.java

    r30062 r35719  
    3535        File documentOut = new File(unzipDir, "mi-tmp-content.xml");
    3636        XMLRestorer restorer = new XMLRestorer();
    37         restorer.restore(documentIn, "utf-8", documentOut, configuration.getPreserveExistingMacrons());
     37
     38        restorer.restore
     39        (
     40            documentIn,
     41            "utf-8",
     42            documentOut,
     43            configuration.getPreserveExistingMacrons(),
     44            configuration.getMarkupChangedWords()
     45        );
     46       
    3847        //Delete the old document.xml and rename the restored document.
    3948        documentIn.delete();
Note: See TracChangeset for help on using the changeset viewer.