├── .classpath ├── .gitignore ├── .project ├── .settings ├── org.eclipse.jdt.core.prefs └── org.eclipse.m2e.core.prefs ├── LICENSE ├── NOTICE ├── README.md ├── assembly.xml ├── dependency-check-suppressions.xml ├── extension.xml ├── generate_and_upload_sbom.txt ├── i18n └── translation.xml ├── lib └── license │ └── licenses.xml ├── logback.xml ├── plugin.xml ├── pom.xml ├── src ├── main │ ├── java │ │ └── com │ │ │ └── oxygenxml │ │ │ └── resources │ │ │ └── batch │ │ │ └── converter │ │ │ ├── BatchConverter.java │ │ │ ├── BatchConverterImpl.java │ │ │ ├── BatchConverterInteractor.java │ │ │ ├── ConversionFormatUtil.java │ │ │ ├── UserInputsProvider.java │ │ │ ├── UserInputsProviderUtil.java │ │ │ ├── actions │ │ │ ├── ConvertAction.java │ │ │ ├── ConvertActionBase.java │ │ │ └── ImportAction.java │ │ │ ├── dmm │ │ │ ├── InsertTopicRefUtil.java │ │ │ ├── InsertType.java │ │ │ └── InsertTypeProvider.java │ │ │ ├── extensions │ │ │ └── ExtensionGetter.java │ │ │ ├── persister │ │ │ ├── ContentPersister.java │ │ │ ├── ContentPersisterImpl.java │ │ │ └── OptionTags.java │ │ │ ├── plugin │ │ │ ├── BatchConverterOptionPageExtension.java │ │ │ ├── BatchConverterPlugin.java │ │ │ ├── BatchConverterPluginExtension.java │ │ │ ├── BatchConverterPluginUtil.java │ │ │ ├── PluginMenusInteractor.java │ │ │ └── ProjectManagerEditor.java │ │ │ ├── proxy │ │ │ └── ProjectPopupMenuCustomizerInvocationHandler.java │ │ │ ├── reporter │ │ │ ├── OxygenProblemReporter.java │ │ │ ├── OxygenStatusReporter.java │ │ │ ├── ProblemReporter.java │ │ │ ├── ProgressDialogInteractor.java │ │ │ ├── ResultsUtil.java │ │ │ └── StatusReporter.java │ │ │ ├── resources │ │ │ └── Images.java │ │ │ ├── transformer │ │ │ └── OxygenTransformerFactoryCreator.java │ │ │ ├── translator │ │ │ ├── OxygenTranslator.java │ │ │ ├── Tags.java │ │ │ └── Translator.java │ │ │ ├── utils │ │ │ └── ConverterFileUtils.java │ │ │ ├── view │ │ │ ├── AdditionalOptionsInfo.java │ │ │ ├── BatchConverterOptionPanel.java │ │ │ ├── ConverterAdditionalOptionsProvider.java │ │ │ ├── ConverterDialog.java │ │ │ ├── InputPanel.java │ │ │ ├── LinkLabel.java │ │ │ ├── MultilineLabel.java │ │ │ ├── OutputPanel.java │ │ │ ├── ProgressDialog.java │ │ │ ├── SectionPane.java │ │ │ └── WordStylesConfigUtil.java │ │ │ └── worker │ │ │ ├── ConverterStatusReporter.java │ │ │ ├── ConverterWorker.java │ │ │ └── ConvertorWorkerInteractor.java │ └── resources │ │ └── images │ │ ├── Empty16.png │ │ ├── Open16.png │ │ ├── Open16@2x.png │ │ ├── ShowHelp16.png │ │ └── ShowHelp16@2x.png └── test │ ├── java │ ├── com │ │ └── oxygenxml │ │ │ └── resources │ │ │ └── batch │ │ │ └── converter │ │ │ ├── converters │ │ │ ├── ExcelToDitaTest.java │ │ │ ├── HtmlToDocbookConverterTest.java │ │ │ ├── HtmlToXhtmlTest.java │ │ │ ├── JsonToXmlTest.java │ │ │ ├── JsonToYamlTest.java │ │ │ ├── MdToDitaTest.java │ │ │ ├── MdToXhtmlTest.java │ │ │ ├── OpenApiToDitaTest.java │ │ │ ├── WordToDitaConverterTest.java │ │ │ ├── WordToXHtmlConverter2Test.java │ │ │ ├── WordToXHtmlConverterTest.java │ │ │ ├── XmlToJsonTest.java │ │ │ ├── XmlToYamlTest.java │ │ │ ├── YamlToJsonTest.java │ │ │ ├── YamlToXmlConverterTest.java │ │ │ └── YamlToXmlTest.java │ │ │ ├── dmm │ │ │ └── InsertTopicRefUtilTest.java │ │ │ └── view │ │ │ └── WordStylesConfigUtilTest.java │ └── tests │ │ └── utils │ │ ├── ConverterStatusReporterTestImpl.java │ │ ├── ConvertorWorkerInteractorTestImpl.java │ │ ├── FileComparationUtil.java │ │ ├── ProblemReporterTestImpl.java │ │ ├── StatusReporterImpl.java │ │ └── TransformerFactoryCreatorImpl.java │ └── resources │ └── logback-test.xml ├── test-sample ├── EXM-44491 │ ├── outputFile.dita │ └── sample.md ├── EXM-44654 │ ├── expectedOutput.xhtml │ ├── input.docx │ └── wordStyleMap.xml ├── EXM-45096 │ ├── expectedOutput.xhtml │ └── input.docx ├── EXM-45460 │ ├── expectedOutput.xhtml │ └── input.docx ├── EXM-45677 │ ├── expectedCustomOutput.xhtml │ ├── expectedOutput.xhtml │ ├── input.docx │ ├── inputCustomStyles.docx │ └── wordStyleMap.xml ├── EXM-45707 │ ├── start_with_high_level.dita │ ├── start_with_high_level.md │ ├── start_with_high_level2.dita │ ├── start_with_high_level2.md │ ├── start_with_high_level3.dita │ └── start_with_high_level3.md ├── EXM-45729 │ └── wordStylesConfig.xml ├── EXM-46055 │ ├── testShortdesc.md │ └── testShortdescOutput.dita ├── EXM-47435 │ ├── outputFile.xml │ ├── personal-schema.yaml │ └── personal.xml ├── EXM-47523 │ ├── _sample#@.xlsx │ └── expected.dita ├── EXM-47545 │ ├── index.dita │ ├── index.docx │ ├── indexTerms.docx │ ├── indexTerms2.docx │ ├── resultIndexTerms.dita │ └── resultIndexTerms2.dita ├── EXM-47800 │ ├── sampleFootnote.dita │ └── sampleFootnote.docx ├── EXM-47898 │ ├── expected.xhtml │ └── samplePre.html ├── EXM-48113 │ ├── expectedMap.ditamap │ ├── topic1.dita │ ├── topic2.dita │ └── topic3.dita ├── EXM-48983 │ └── sample.docx ├── EXM-50253 │ ├── definitions.json │ └── externalReference.json ├── EXM-51942 │ ├── form-controls.json │ └── form-controls.yaml ├── excel.xls ├── excelToDITA.dita ├── expected │ ├── HtmlToXhtml.xhtml │ └── XHtmlWithUnknownTags.xhtml ├── expectedDb4.xml ├── expectedDb5.xml ├── goodMdToDita.dita ├── goodMdToXhtml.xhtml ├── htmlTest.html ├── htmlWithUnknownTags.html ├── invalidDoc.md ├── jsonTest.json ├── markdownTest.md ├── prettyPrintTest │ └── outputFile.xml ├── wordTo │ ├── image.png │ ├── multipleEquations.docx │ ├── multipleEquations.xhtml │ ├── resultOfDocToXHTML.xhtml │ ├── resultOfDocxToDita.dita │ ├── resultOfDocxToXHTML.xhtml │ ├── test.doc │ └── test.docx ├── xmlTest.xml └── yamlTest.yaml └── third-party-components.xml /.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/oxygen-batch-converter-addon/HEAD/.classpath -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | target/ 2 | /bin/ 3 | -------------------------------------------------------------------------------- /.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/oxygen-batch-converter-addon/HEAD/.project -------------------------------------------------------------------------------- /.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/oxygen-batch-converter-addon/HEAD/.settings/org.eclipse.jdt.core.prefs -------------------------------------------------------------------------------- /.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/oxygen-batch-converter-addon/HEAD/.settings/org.eclipse.m2e.core.prefs -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/oxygen-batch-converter-addon/HEAD/LICENSE -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/oxygen-batch-converter-addon/HEAD/NOTICE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/oxygen-batch-converter-addon/HEAD/README.md -------------------------------------------------------------------------------- /assembly.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/oxygen-batch-converter-addon/HEAD/assembly.xml -------------------------------------------------------------------------------- /dependency-check-suppressions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/oxygen-batch-converter-addon/HEAD/dependency-check-suppressions.xml -------------------------------------------------------------------------------- /extension.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/oxygen-batch-converter-addon/HEAD/extension.xml -------------------------------------------------------------------------------- /generate_and_upload_sbom.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /i18n/translation.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/oxygen-batch-converter-addon/HEAD/i18n/translation.xml -------------------------------------------------------------------------------- /lib/license/licenses.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/oxygen-batch-converter-addon/HEAD/lib/license/licenses.xml -------------------------------------------------------------------------------- /logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/oxygen-batch-converter-addon/HEAD/logback.xml -------------------------------------------------------------------------------- /plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/oxygen-batch-converter-addon/HEAD/plugin.xml -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/oxygen-batch-converter-addon/HEAD/pom.xml -------------------------------------------------------------------------------- /src/main/java/com/oxygenxml/resources/batch/converter/BatchConverter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/oxygen-batch-converter-addon/HEAD/src/main/java/com/oxygenxml/resources/batch/converter/BatchConverter.java -------------------------------------------------------------------------------- /src/main/java/com/oxygenxml/resources/batch/converter/BatchConverterImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/oxygen-batch-converter-addon/HEAD/src/main/java/com/oxygenxml/resources/batch/converter/BatchConverterImpl.java -------------------------------------------------------------------------------- /src/main/java/com/oxygenxml/resources/batch/converter/BatchConverterInteractor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/oxygen-batch-converter-addon/HEAD/src/main/java/com/oxygenxml/resources/batch/converter/BatchConverterInteractor.java -------------------------------------------------------------------------------- /src/main/java/com/oxygenxml/resources/batch/converter/ConversionFormatUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/oxygen-batch-converter-addon/HEAD/src/main/java/com/oxygenxml/resources/batch/converter/ConversionFormatUtil.java -------------------------------------------------------------------------------- /src/main/java/com/oxygenxml/resources/batch/converter/UserInputsProvider.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/oxygen-batch-converter-addon/HEAD/src/main/java/com/oxygenxml/resources/batch/converter/UserInputsProvider.java -------------------------------------------------------------------------------- /src/main/java/com/oxygenxml/resources/batch/converter/UserInputsProviderUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/oxygen-batch-converter-addon/HEAD/src/main/java/com/oxygenxml/resources/batch/converter/UserInputsProviderUtil.java -------------------------------------------------------------------------------- /src/main/java/com/oxygenxml/resources/batch/converter/actions/ConvertAction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/oxygen-batch-converter-addon/HEAD/src/main/java/com/oxygenxml/resources/batch/converter/actions/ConvertAction.java -------------------------------------------------------------------------------- /src/main/java/com/oxygenxml/resources/batch/converter/actions/ConvertActionBase.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/oxygen-batch-converter-addon/HEAD/src/main/java/com/oxygenxml/resources/batch/converter/actions/ConvertActionBase.java -------------------------------------------------------------------------------- /src/main/java/com/oxygenxml/resources/batch/converter/actions/ImportAction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/oxygen-batch-converter-addon/HEAD/src/main/java/com/oxygenxml/resources/batch/converter/actions/ImportAction.java -------------------------------------------------------------------------------- /src/main/java/com/oxygenxml/resources/batch/converter/dmm/InsertTopicRefUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/oxygen-batch-converter-addon/HEAD/src/main/java/com/oxygenxml/resources/batch/converter/dmm/InsertTopicRefUtil.java -------------------------------------------------------------------------------- /src/main/java/com/oxygenxml/resources/batch/converter/dmm/InsertType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/oxygen-batch-converter-addon/HEAD/src/main/java/com/oxygenxml/resources/batch/converter/dmm/InsertType.java -------------------------------------------------------------------------------- /src/main/java/com/oxygenxml/resources/batch/converter/dmm/InsertTypeProvider.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/oxygen-batch-converter-addon/HEAD/src/main/java/com/oxygenxml/resources/batch/converter/dmm/InsertTypeProvider.java -------------------------------------------------------------------------------- /src/main/java/com/oxygenxml/resources/batch/converter/extensions/ExtensionGetter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/oxygen-batch-converter-addon/HEAD/src/main/java/com/oxygenxml/resources/batch/converter/extensions/ExtensionGetter.java -------------------------------------------------------------------------------- /src/main/java/com/oxygenxml/resources/batch/converter/persister/ContentPersister.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/oxygen-batch-converter-addon/HEAD/src/main/java/com/oxygenxml/resources/batch/converter/persister/ContentPersister.java -------------------------------------------------------------------------------- /src/main/java/com/oxygenxml/resources/batch/converter/persister/ContentPersisterImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/oxygen-batch-converter-addon/HEAD/src/main/java/com/oxygenxml/resources/batch/converter/persister/ContentPersisterImpl.java -------------------------------------------------------------------------------- /src/main/java/com/oxygenxml/resources/batch/converter/persister/OptionTags.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/oxygen-batch-converter-addon/HEAD/src/main/java/com/oxygenxml/resources/batch/converter/persister/OptionTags.java -------------------------------------------------------------------------------- /src/main/java/com/oxygenxml/resources/batch/converter/plugin/BatchConverterOptionPageExtension.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/oxygen-batch-converter-addon/HEAD/src/main/java/com/oxygenxml/resources/batch/converter/plugin/BatchConverterOptionPageExtension.java -------------------------------------------------------------------------------- /src/main/java/com/oxygenxml/resources/batch/converter/plugin/BatchConverterPlugin.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/oxygen-batch-converter-addon/HEAD/src/main/java/com/oxygenxml/resources/batch/converter/plugin/BatchConverterPlugin.java -------------------------------------------------------------------------------- /src/main/java/com/oxygenxml/resources/batch/converter/plugin/BatchConverterPluginExtension.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/oxygen-batch-converter-addon/HEAD/src/main/java/com/oxygenxml/resources/batch/converter/plugin/BatchConverterPluginExtension.java -------------------------------------------------------------------------------- /src/main/java/com/oxygenxml/resources/batch/converter/plugin/BatchConverterPluginUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/oxygen-batch-converter-addon/HEAD/src/main/java/com/oxygenxml/resources/batch/converter/plugin/BatchConverterPluginUtil.java -------------------------------------------------------------------------------- /src/main/java/com/oxygenxml/resources/batch/converter/plugin/PluginMenusInteractor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/oxygen-batch-converter-addon/HEAD/src/main/java/com/oxygenxml/resources/batch/converter/plugin/PluginMenusInteractor.java -------------------------------------------------------------------------------- /src/main/java/com/oxygenxml/resources/batch/converter/plugin/ProjectManagerEditor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/oxygen-batch-converter-addon/HEAD/src/main/java/com/oxygenxml/resources/batch/converter/plugin/ProjectManagerEditor.java -------------------------------------------------------------------------------- /src/main/java/com/oxygenxml/resources/batch/converter/proxy/ProjectPopupMenuCustomizerInvocationHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/oxygen-batch-converter-addon/HEAD/src/main/java/com/oxygenxml/resources/batch/converter/proxy/ProjectPopupMenuCustomizerInvocationHandler.java -------------------------------------------------------------------------------- /src/main/java/com/oxygenxml/resources/batch/converter/reporter/OxygenProblemReporter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/oxygen-batch-converter-addon/HEAD/src/main/java/com/oxygenxml/resources/batch/converter/reporter/OxygenProblemReporter.java -------------------------------------------------------------------------------- /src/main/java/com/oxygenxml/resources/batch/converter/reporter/OxygenStatusReporter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/oxygen-batch-converter-addon/HEAD/src/main/java/com/oxygenxml/resources/batch/converter/reporter/OxygenStatusReporter.java -------------------------------------------------------------------------------- /src/main/java/com/oxygenxml/resources/batch/converter/reporter/ProblemReporter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/oxygen-batch-converter-addon/HEAD/src/main/java/com/oxygenxml/resources/batch/converter/reporter/ProblemReporter.java -------------------------------------------------------------------------------- /src/main/java/com/oxygenxml/resources/batch/converter/reporter/ProgressDialogInteractor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/oxygen-batch-converter-addon/HEAD/src/main/java/com/oxygenxml/resources/batch/converter/reporter/ProgressDialogInteractor.java -------------------------------------------------------------------------------- /src/main/java/com/oxygenxml/resources/batch/converter/reporter/ResultsUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/oxygen-batch-converter-addon/HEAD/src/main/java/com/oxygenxml/resources/batch/converter/reporter/ResultsUtil.java -------------------------------------------------------------------------------- /src/main/java/com/oxygenxml/resources/batch/converter/reporter/StatusReporter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/oxygen-batch-converter-addon/HEAD/src/main/java/com/oxygenxml/resources/batch/converter/reporter/StatusReporter.java -------------------------------------------------------------------------------- /src/main/java/com/oxygenxml/resources/batch/converter/resources/Images.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/oxygen-batch-converter-addon/HEAD/src/main/java/com/oxygenxml/resources/batch/converter/resources/Images.java -------------------------------------------------------------------------------- /src/main/java/com/oxygenxml/resources/batch/converter/transformer/OxygenTransformerFactoryCreator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/oxygen-batch-converter-addon/HEAD/src/main/java/com/oxygenxml/resources/batch/converter/transformer/OxygenTransformerFactoryCreator.java -------------------------------------------------------------------------------- /src/main/java/com/oxygenxml/resources/batch/converter/translator/OxygenTranslator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/oxygen-batch-converter-addon/HEAD/src/main/java/com/oxygenxml/resources/batch/converter/translator/OxygenTranslator.java -------------------------------------------------------------------------------- /src/main/java/com/oxygenxml/resources/batch/converter/translator/Tags.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/oxygen-batch-converter-addon/HEAD/src/main/java/com/oxygenxml/resources/batch/converter/translator/Tags.java -------------------------------------------------------------------------------- /src/main/java/com/oxygenxml/resources/batch/converter/translator/Translator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/oxygen-batch-converter-addon/HEAD/src/main/java/com/oxygenxml/resources/batch/converter/translator/Translator.java -------------------------------------------------------------------------------- /src/main/java/com/oxygenxml/resources/batch/converter/utils/ConverterFileUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/oxygen-batch-converter-addon/HEAD/src/main/java/com/oxygenxml/resources/batch/converter/utils/ConverterFileUtils.java -------------------------------------------------------------------------------- /src/main/java/com/oxygenxml/resources/batch/converter/view/AdditionalOptionsInfo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/oxygen-batch-converter-addon/HEAD/src/main/java/com/oxygenxml/resources/batch/converter/view/AdditionalOptionsInfo.java -------------------------------------------------------------------------------- /src/main/java/com/oxygenxml/resources/batch/converter/view/BatchConverterOptionPanel.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/oxygen-batch-converter-addon/HEAD/src/main/java/com/oxygenxml/resources/batch/converter/view/BatchConverterOptionPanel.java -------------------------------------------------------------------------------- /src/main/java/com/oxygenxml/resources/batch/converter/view/ConverterAdditionalOptionsProvider.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/oxygen-batch-converter-addon/HEAD/src/main/java/com/oxygenxml/resources/batch/converter/view/ConverterAdditionalOptionsProvider.java -------------------------------------------------------------------------------- /src/main/java/com/oxygenxml/resources/batch/converter/view/ConverterDialog.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/oxygen-batch-converter-addon/HEAD/src/main/java/com/oxygenxml/resources/batch/converter/view/ConverterDialog.java -------------------------------------------------------------------------------- /src/main/java/com/oxygenxml/resources/batch/converter/view/InputPanel.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/oxygen-batch-converter-addon/HEAD/src/main/java/com/oxygenxml/resources/batch/converter/view/InputPanel.java -------------------------------------------------------------------------------- /src/main/java/com/oxygenxml/resources/batch/converter/view/LinkLabel.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/oxygen-batch-converter-addon/HEAD/src/main/java/com/oxygenxml/resources/batch/converter/view/LinkLabel.java -------------------------------------------------------------------------------- /src/main/java/com/oxygenxml/resources/batch/converter/view/MultilineLabel.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/oxygen-batch-converter-addon/HEAD/src/main/java/com/oxygenxml/resources/batch/converter/view/MultilineLabel.java -------------------------------------------------------------------------------- /src/main/java/com/oxygenxml/resources/batch/converter/view/OutputPanel.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/oxygen-batch-converter-addon/HEAD/src/main/java/com/oxygenxml/resources/batch/converter/view/OutputPanel.java -------------------------------------------------------------------------------- /src/main/java/com/oxygenxml/resources/batch/converter/view/ProgressDialog.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/oxygen-batch-converter-addon/HEAD/src/main/java/com/oxygenxml/resources/batch/converter/view/ProgressDialog.java -------------------------------------------------------------------------------- /src/main/java/com/oxygenxml/resources/batch/converter/view/SectionPane.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/oxygen-batch-converter-addon/HEAD/src/main/java/com/oxygenxml/resources/batch/converter/view/SectionPane.java -------------------------------------------------------------------------------- /src/main/java/com/oxygenxml/resources/batch/converter/view/WordStylesConfigUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/oxygen-batch-converter-addon/HEAD/src/main/java/com/oxygenxml/resources/batch/converter/view/WordStylesConfigUtil.java -------------------------------------------------------------------------------- /src/main/java/com/oxygenxml/resources/batch/converter/worker/ConverterStatusReporter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/oxygen-batch-converter-addon/HEAD/src/main/java/com/oxygenxml/resources/batch/converter/worker/ConverterStatusReporter.java -------------------------------------------------------------------------------- /src/main/java/com/oxygenxml/resources/batch/converter/worker/ConverterWorker.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/oxygen-batch-converter-addon/HEAD/src/main/java/com/oxygenxml/resources/batch/converter/worker/ConverterWorker.java -------------------------------------------------------------------------------- /src/main/java/com/oxygenxml/resources/batch/converter/worker/ConvertorWorkerInteractor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/oxygen-batch-converter-addon/HEAD/src/main/java/com/oxygenxml/resources/batch/converter/worker/ConvertorWorkerInteractor.java -------------------------------------------------------------------------------- /src/main/resources/images/Empty16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/oxygen-batch-converter-addon/HEAD/src/main/resources/images/Empty16.png -------------------------------------------------------------------------------- /src/main/resources/images/Open16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/oxygen-batch-converter-addon/HEAD/src/main/resources/images/Open16.png -------------------------------------------------------------------------------- /src/main/resources/images/Open16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/oxygen-batch-converter-addon/HEAD/src/main/resources/images/Open16@2x.png -------------------------------------------------------------------------------- /src/main/resources/images/ShowHelp16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/oxygen-batch-converter-addon/HEAD/src/main/resources/images/ShowHelp16.png -------------------------------------------------------------------------------- /src/main/resources/images/ShowHelp16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/oxygen-batch-converter-addon/HEAD/src/main/resources/images/ShowHelp16@2x.png -------------------------------------------------------------------------------- /src/test/java/com/oxygenxml/resources/batch/converter/converters/ExcelToDitaTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/oxygen-batch-converter-addon/HEAD/src/test/java/com/oxygenxml/resources/batch/converter/converters/ExcelToDitaTest.java -------------------------------------------------------------------------------- /src/test/java/com/oxygenxml/resources/batch/converter/converters/HtmlToDocbookConverterTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/oxygen-batch-converter-addon/HEAD/src/test/java/com/oxygenxml/resources/batch/converter/converters/HtmlToDocbookConverterTest.java -------------------------------------------------------------------------------- /src/test/java/com/oxygenxml/resources/batch/converter/converters/HtmlToXhtmlTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/oxygen-batch-converter-addon/HEAD/src/test/java/com/oxygenxml/resources/batch/converter/converters/HtmlToXhtmlTest.java -------------------------------------------------------------------------------- /src/test/java/com/oxygenxml/resources/batch/converter/converters/JsonToXmlTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/oxygen-batch-converter-addon/HEAD/src/test/java/com/oxygenxml/resources/batch/converter/converters/JsonToXmlTest.java -------------------------------------------------------------------------------- /src/test/java/com/oxygenxml/resources/batch/converter/converters/JsonToYamlTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/oxygen-batch-converter-addon/HEAD/src/test/java/com/oxygenxml/resources/batch/converter/converters/JsonToYamlTest.java -------------------------------------------------------------------------------- /src/test/java/com/oxygenxml/resources/batch/converter/converters/MdToDitaTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/oxygen-batch-converter-addon/HEAD/src/test/java/com/oxygenxml/resources/batch/converter/converters/MdToDitaTest.java -------------------------------------------------------------------------------- /src/test/java/com/oxygenxml/resources/batch/converter/converters/MdToXhtmlTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/oxygen-batch-converter-addon/HEAD/src/test/java/com/oxygenxml/resources/batch/converter/converters/MdToXhtmlTest.java -------------------------------------------------------------------------------- /src/test/java/com/oxygenxml/resources/batch/converter/converters/OpenApiToDitaTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/oxygen-batch-converter-addon/HEAD/src/test/java/com/oxygenxml/resources/batch/converter/converters/OpenApiToDitaTest.java -------------------------------------------------------------------------------- /src/test/java/com/oxygenxml/resources/batch/converter/converters/WordToDitaConverterTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/oxygen-batch-converter-addon/HEAD/src/test/java/com/oxygenxml/resources/batch/converter/converters/WordToDitaConverterTest.java -------------------------------------------------------------------------------- /src/test/java/com/oxygenxml/resources/batch/converter/converters/WordToXHtmlConverter2Test.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/oxygen-batch-converter-addon/HEAD/src/test/java/com/oxygenxml/resources/batch/converter/converters/WordToXHtmlConverter2Test.java -------------------------------------------------------------------------------- /src/test/java/com/oxygenxml/resources/batch/converter/converters/WordToXHtmlConverterTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/oxygen-batch-converter-addon/HEAD/src/test/java/com/oxygenxml/resources/batch/converter/converters/WordToXHtmlConverterTest.java -------------------------------------------------------------------------------- /src/test/java/com/oxygenxml/resources/batch/converter/converters/XmlToJsonTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/oxygen-batch-converter-addon/HEAD/src/test/java/com/oxygenxml/resources/batch/converter/converters/XmlToJsonTest.java -------------------------------------------------------------------------------- /src/test/java/com/oxygenxml/resources/batch/converter/converters/XmlToYamlTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/oxygen-batch-converter-addon/HEAD/src/test/java/com/oxygenxml/resources/batch/converter/converters/XmlToYamlTest.java -------------------------------------------------------------------------------- /src/test/java/com/oxygenxml/resources/batch/converter/converters/YamlToJsonTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/oxygen-batch-converter-addon/HEAD/src/test/java/com/oxygenxml/resources/batch/converter/converters/YamlToJsonTest.java -------------------------------------------------------------------------------- /src/test/java/com/oxygenxml/resources/batch/converter/converters/YamlToXmlConverterTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/oxygen-batch-converter-addon/HEAD/src/test/java/com/oxygenxml/resources/batch/converter/converters/YamlToXmlConverterTest.java -------------------------------------------------------------------------------- /src/test/java/com/oxygenxml/resources/batch/converter/converters/YamlToXmlTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/oxygen-batch-converter-addon/HEAD/src/test/java/com/oxygenxml/resources/batch/converter/converters/YamlToXmlTest.java -------------------------------------------------------------------------------- /src/test/java/com/oxygenxml/resources/batch/converter/dmm/InsertTopicRefUtilTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/oxygen-batch-converter-addon/HEAD/src/test/java/com/oxygenxml/resources/batch/converter/dmm/InsertTopicRefUtilTest.java -------------------------------------------------------------------------------- /src/test/java/com/oxygenxml/resources/batch/converter/view/WordStylesConfigUtilTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/oxygen-batch-converter-addon/HEAD/src/test/java/com/oxygenxml/resources/batch/converter/view/WordStylesConfigUtilTest.java -------------------------------------------------------------------------------- /src/test/java/tests/utils/ConverterStatusReporterTestImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/oxygen-batch-converter-addon/HEAD/src/test/java/tests/utils/ConverterStatusReporterTestImpl.java -------------------------------------------------------------------------------- /src/test/java/tests/utils/ConvertorWorkerInteractorTestImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/oxygen-batch-converter-addon/HEAD/src/test/java/tests/utils/ConvertorWorkerInteractorTestImpl.java -------------------------------------------------------------------------------- /src/test/java/tests/utils/FileComparationUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/oxygen-batch-converter-addon/HEAD/src/test/java/tests/utils/FileComparationUtil.java -------------------------------------------------------------------------------- /src/test/java/tests/utils/ProblemReporterTestImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/oxygen-batch-converter-addon/HEAD/src/test/java/tests/utils/ProblemReporterTestImpl.java -------------------------------------------------------------------------------- /src/test/java/tests/utils/StatusReporterImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/oxygen-batch-converter-addon/HEAD/src/test/java/tests/utils/StatusReporterImpl.java -------------------------------------------------------------------------------- /src/test/java/tests/utils/TransformerFactoryCreatorImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/oxygen-batch-converter-addon/HEAD/src/test/java/tests/utils/TransformerFactoryCreatorImpl.java -------------------------------------------------------------------------------- /src/test/resources/logback-test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/oxygen-batch-converter-addon/HEAD/src/test/resources/logback-test.xml -------------------------------------------------------------------------------- /test-sample/EXM-44491/outputFile.dita: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/oxygen-batch-converter-addon/HEAD/test-sample/EXM-44491/outputFile.dita -------------------------------------------------------------------------------- /test-sample/EXM-44491/sample.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/oxygen-batch-converter-addon/HEAD/test-sample/EXM-44491/sample.md -------------------------------------------------------------------------------- /test-sample/EXM-44654/expectedOutput.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/oxygen-batch-converter-addon/HEAD/test-sample/EXM-44654/expectedOutput.xhtml -------------------------------------------------------------------------------- /test-sample/EXM-44654/input.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/oxygen-batch-converter-addon/HEAD/test-sample/EXM-44654/input.docx -------------------------------------------------------------------------------- /test-sample/EXM-44654/wordStyleMap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/oxygen-batch-converter-addon/HEAD/test-sample/EXM-44654/wordStyleMap.xml -------------------------------------------------------------------------------- /test-sample/EXM-45096/expectedOutput.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/oxygen-batch-converter-addon/HEAD/test-sample/EXM-45096/expectedOutput.xhtml -------------------------------------------------------------------------------- /test-sample/EXM-45096/input.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/oxygen-batch-converter-addon/HEAD/test-sample/EXM-45096/input.docx -------------------------------------------------------------------------------- /test-sample/EXM-45460/expectedOutput.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/oxygen-batch-converter-addon/HEAD/test-sample/EXM-45460/expectedOutput.xhtml -------------------------------------------------------------------------------- /test-sample/EXM-45460/input.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/oxygen-batch-converter-addon/HEAD/test-sample/EXM-45460/input.docx -------------------------------------------------------------------------------- /test-sample/EXM-45677/expectedCustomOutput.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/oxygen-batch-converter-addon/HEAD/test-sample/EXM-45677/expectedCustomOutput.xhtml -------------------------------------------------------------------------------- /test-sample/EXM-45677/expectedOutput.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/oxygen-batch-converter-addon/HEAD/test-sample/EXM-45677/expectedOutput.xhtml -------------------------------------------------------------------------------- /test-sample/EXM-45677/input.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/oxygen-batch-converter-addon/HEAD/test-sample/EXM-45677/input.docx -------------------------------------------------------------------------------- /test-sample/EXM-45677/inputCustomStyles.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/oxygen-batch-converter-addon/HEAD/test-sample/EXM-45677/inputCustomStyles.docx -------------------------------------------------------------------------------- /test-sample/EXM-45677/wordStyleMap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/oxygen-batch-converter-addon/HEAD/test-sample/EXM-45677/wordStyleMap.xml -------------------------------------------------------------------------------- /test-sample/EXM-45707/start_with_high_level.dita: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/oxygen-batch-converter-addon/HEAD/test-sample/EXM-45707/start_with_high_level.dita -------------------------------------------------------------------------------- /test-sample/EXM-45707/start_with_high_level.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/oxygen-batch-converter-addon/HEAD/test-sample/EXM-45707/start_with_high_level.md -------------------------------------------------------------------------------- /test-sample/EXM-45707/start_with_high_level2.dita: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/oxygen-batch-converter-addon/HEAD/test-sample/EXM-45707/start_with_high_level2.dita -------------------------------------------------------------------------------- /test-sample/EXM-45707/start_with_high_level2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/oxygen-batch-converter-addon/HEAD/test-sample/EXM-45707/start_with_high_level2.md -------------------------------------------------------------------------------- /test-sample/EXM-45707/start_with_high_level3.dita: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/oxygen-batch-converter-addon/HEAD/test-sample/EXM-45707/start_with_high_level3.dita -------------------------------------------------------------------------------- /test-sample/EXM-45707/start_with_high_level3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/oxygen-batch-converter-addon/HEAD/test-sample/EXM-45707/start_with_high_level3.md -------------------------------------------------------------------------------- /test-sample/EXM-45729/wordStylesConfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/oxygen-batch-converter-addon/HEAD/test-sample/EXM-45729/wordStylesConfig.xml -------------------------------------------------------------------------------- /test-sample/EXM-46055/testShortdesc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/oxygen-batch-converter-addon/HEAD/test-sample/EXM-46055/testShortdesc.md -------------------------------------------------------------------------------- /test-sample/EXM-46055/testShortdescOutput.dita: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/oxygen-batch-converter-addon/HEAD/test-sample/EXM-46055/testShortdescOutput.dita -------------------------------------------------------------------------------- /test-sample/EXM-47435/outputFile.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/oxygen-batch-converter-addon/HEAD/test-sample/EXM-47435/outputFile.xml -------------------------------------------------------------------------------- /test-sample/EXM-47435/personal-schema.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/oxygen-batch-converter-addon/HEAD/test-sample/EXM-47435/personal-schema.yaml -------------------------------------------------------------------------------- /test-sample/EXM-47435/personal.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/oxygen-batch-converter-addon/HEAD/test-sample/EXM-47435/personal.xml -------------------------------------------------------------------------------- /test-sample/EXM-47523/_sample#@.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/oxygen-batch-converter-addon/HEAD/test-sample/EXM-47523/_sample#@.xlsx -------------------------------------------------------------------------------- /test-sample/EXM-47523/expected.dita: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/oxygen-batch-converter-addon/HEAD/test-sample/EXM-47523/expected.dita -------------------------------------------------------------------------------- /test-sample/EXM-47545/index.dita: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/oxygen-batch-converter-addon/HEAD/test-sample/EXM-47545/index.dita -------------------------------------------------------------------------------- /test-sample/EXM-47545/index.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/oxygen-batch-converter-addon/HEAD/test-sample/EXM-47545/index.docx -------------------------------------------------------------------------------- /test-sample/EXM-47545/indexTerms.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/oxygen-batch-converter-addon/HEAD/test-sample/EXM-47545/indexTerms.docx -------------------------------------------------------------------------------- /test-sample/EXM-47545/indexTerms2.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/oxygen-batch-converter-addon/HEAD/test-sample/EXM-47545/indexTerms2.docx -------------------------------------------------------------------------------- /test-sample/EXM-47545/resultIndexTerms.dita: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/oxygen-batch-converter-addon/HEAD/test-sample/EXM-47545/resultIndexTerms.dita -------------------------------------------------------------------------------- /test-sample/EXM-47545/resultIndexTerms2.dita: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/oxygen-batch-converter-addon/HEAD/test-sample/EXM-47545/resultIndexTerms2.dita -------------------------------------------------------------------------------- /test-sample/EXM-47800/sampleFootnote.dita: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/oxygen-batch-converter-addon/HEAD/test-sample/EXM-47800/sampleFootnote.dita -------------------------------------------------------------------------------- /test-sample/EXM-47800/sampleFootnote.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/oxygen-batch-converter-addon/HEAD/test-sample/EXM-47800/sampleFootnote.docx -------------------------------------------------------------------------------- /test-sample/EXM-47898/expected.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/oxygen-batch-converter-addon/HEAD/test-sample/EXM-47898/expected.xhtml -------------------------------------------------------------------------------- /test-sample/EXM-47898/samplePre.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/oxygen-batch-converter-addon/HEAD/test-sample/EXM-47898/samplePre.html -------------------------------------------------------------------------------- /test-sample/EXM-48113/expectedMap.ditamap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/oxygen-batch-converter-addon/HEAD/test-sample/EXM-48113/expectedMap.ditamap -------------------------------------------------------------------------------- /test-sample/EXM-48113/topic1.dita: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/oxygen-batch-converter-addon/HEAD/test-sample/EXM-48113/topic1.dita -------------------------------------------------------------------------------- /test-sample/EXM-48113/topic2.dita: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/oxygen-batch-converter-addon/HEAD/test-sample/EXM-48113/topic2.dita -------------------------------------------------------------------------------- /test-sample/EXM-48113/topic3.dita: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/oxygen-batch-converter-addon/HEAD/test-sample/EXM-48113/topic3.dita -------------------------------------------------------------------------------- /test-sample/EXM-48983/sample.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/oxygen-batch-converter-addon/HEAD/test-sample/EXM-48983/sample.docx -------------------------------------------------------------------------------- /test-sample/EXM-50253/definitions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/oxygen-batch-converter-addon/HEAD/test-sample/EXM-50253/definitions.json -------------------------------------------------------------------------------- /test-sample/EXM-50253/externalReference.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/oxygen-batch-converter-addon/HEAD/test-sample/EXM-50253/externalReference.json -------------------------------------------------------------------------------- /test-sample/EXM-51942/form-controls.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/oxygen-batch-converter-addon/HEAD/test-sample/EXM-51942/form-controls.json -------------------------------------------------------------------------------- /test-sample/EXM-51942/form-controls.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/oxygen-batch-converter-addon/HEAD/test-sample/EXM-51942/form-controls.yaml -------------------------------------------------------------------------------- /test-sample/excel.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/oxygen-batch-converter-addon/HEAD/test-sample/excel.xls -------------------------------------------------------------------------------- /test-sample/excelToDITA.dita: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/oxygen-batch-converter-addon/HEAD/test-sample/excelToDITA.dita -------------------------------------------------------------------------------- /test-sample/expected/HtmlToXhtml.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/oxygen-batch-converter-addon/HEAD/test-sample/expected/HtmlToXhtml.xhtml -------------------------------------------------------------------------------- /test-sample/expected/XHtmlWithUnknownTags.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/oxygen-batch-converter-addon/HEAD/test-sample/expected/XHtmlWithUnknownTags.xhtml -------------------------------------------------------------------------------- /test-sample/expectedDb4.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/oxygen-batch-converter-addon/HEAD/test-sample/expectedDb4.xml -------------------------------------------------------------------------------- /test-sample/expectedDb5.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/oxygen-batch-converter-addon/HEAD/test-sample/expectedDb5.xml -------------------------------------------------------------------------------- /test-sample/goodMdToDita.dita: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/oxygen-batch-converter-addon/HEAD/test-sample/goodMdToDita.dita -------------------------------------------------------------------------------- /test-sample/goodMdToXhtml.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/oxygen-batch-converter-addon/HEAD/test-sample/goodMdToXhtml.xhtml -------------------------------------------------------------------------------- /test-sample/htmlTest.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/oxygen-batch-converter-addon/HEAD/test-sample/htmlTest.html -------------------------------------------------------------------------------- /test-sample/htmlWithUnknownTags.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/oxygen-batch-converter-addon/HEAD/test-sample/htmlWithUnknownTags.html -------------------------------------------------------------------------------- /test-sample/invalidDoc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/oxygen-batch-converter-addon/HEAD/test-sample/invalidDoc.md -------------------------------------------------------------------------------- /test-sample/jsonTest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/oxygen-batch-converter-addon/HEAD/test-sample/jsonTest.json -------------------------------------------------------------------------------- /test-sample/markdownTest.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/oxygen-batch-converter-addon/HEAD/test-sample/markdownTest.md -------------------------------------------------------------------------------- /test-sample/prettyPrintTest/outputFile.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/oxygen-batch-converter-addon/HEAD/test-sample/prettyPrintTest/outputFile.xml -------------------------------------------------------------------------------- /test-sample/wordTo/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/oxygen-batch-converter-addon/HEAD/test-sample/wordTo/image.png -------------------------------------------------------------------------------- /test-sample/wordTo/multipleEquations.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/oxygen-batch-converter-addon/HEAD/test-sample/wordTo/multipleEquations.docx -------------------------------------------------------------------------------- /test-sample/wordTo/multipleEquations.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/oxygen-batch-converter-addon/HEAD/test-sample/wordTo/multipleEquations.xhtml -------------------------------------------------------------------------------- /test-sample/wordTo/resultOfDocToXHTML.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/oxygen-batch-converter-addon/HEAD/test-sample/wordTo/resultOfDocToXHTML.xhtml -------------------------------------------------------------------------------- /test-sample/wordTo/resultOfDocxToDita.dita: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/oxygen-batch-converter-addon/HEAD/test-sample/wordTo/resultOfDocxToDita.dita -------------------------------------------------------------------------------- /test-sample/wordTo/resultOfDocxToXHTML.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/oxygen-batch-converter-addon/HEAD/test-sample/wordTo/resultOfDocxToXHTML.xhtml -------------------------------------------------------------------------------- /test-sample/wordTo/test.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/oxygen-batch-converter-addon/HEAD/test-sample/wordTo/test.doc -------------------------------------------------------------------------------- /test-sample/wordTo/test.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/oxygen-batch-converter-addon/HEAD/test-sample/wordTo/test.docx -------------------------------------------------------------------------------- /test-sample/xmlTest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/oxygen-batch-converter-addon/HEAD/test-sample/xmlTest.xml -------------------------------------------------------------------------------- /test-sample/yamlTest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/oxygen-batch-converter-addon/HEAD/test-sample/yamlTest.yaml -------------------------------------------------------------------------------- /third-party-components.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/oxygen-batch-converter-addon/HEAD/third-party-components.xml --------------------------------------------------------------------------------