├── .classpath ├── .gitignore ├── .project ├── .settings └── org.eclipse.jdt.core.prefs ├── LICENSE ├── README.md ├── article1.docx ├── article1.xml ├── article2.docx ├── article2.xml ├── article_english.docx ├── article_english.xml ├── lib ├── antlr-2.7.7.jar ├── antlr-runtime-3.5.2.jar ├── avalon-framework-api-4.3.1.jar ├── avalon-framework-impl-4.3.1.jar ├── commons-codec-1.10.jar ├── commons-io-2.4.jar ├── commons-lang3-3.4.jar ├── commons-logging-1.1.3.jar ├── docx4j-3.3.2.jar ├── guava-19.0.jar ├── httpclient-4.5.2.jar ├── httpcore-4.4.4.jar ├── jackson-annotations-2.7.0.jar ├── jackson-core-2.7.3.jar ├── jackson-databind-2.7.3.jar ├── jaxb-svg11-1.0.2.jar ├── lorem-2.0.jar ├── mbassador-1.2.4.2.jar ├── serializer-2.7.2.jar ├── slf4j-api-1.7.21.jar ├── stringtemplate-3.2.1.jar ├── wmf2svg-0.9.8.jar ├── xalan-2.7.2.jar └── xmlgraphics-commons-2.1.jar ├── src └── doc │ └── transformation │ └── xml │ ├── CustomExceptions.java │ ├── customMethods.java │ ├── docIngestion.java │ ├── transformerAbstractKey.java │ ├── transformerArticleBack.java │ ├── transformerBiblAMA.java │ ├── transformerFigRefs.java │ ├── transformerFigures.java │ ├── transformerInTextCit.java │ ├── transformerMeta.java │ ├── transformerTableRefs.java │ └── transformerTables.java └── stylesheets ├── charts ├── _rels │ └── chart1.xml.rels ├── chart1.xml ├── colors1.xml └── style1.xml ├── common ├── common.xsl ├── common_core.xsl ├── common_figures.xsl ├── common_gaiji.xsl ├── common_header.xsl ├── common_linking.xsl ├── common_makeTEIStructure.xsl ├── common_msdescription.xsl ├── common_param.xsl ├── common_tagdocs.xsl ├── common_textcrit.xsl ├── common_textstructure.xsl ├── functions.xsl ├── i18n.xsl ├── identity.xsl ├── jsonlib.xsl ├── teianttasks.xml └── verbatim.xsl ├── docx ├── build-from.xml ├── build-to.xml ├── from │ ├── docxtotei.xsl │ ├── dynamic │ │ └── tests │ │ │ ├── test-toc-scenario.xml │ │ │ └── xspec │ │ │ ├── test-toc-scenario-result.html │ │ │ ├── test-toc-scenario-result.xml │ │ │ └── test-toc-scenario.xsl │ ├── fields.xsl │ ├── functions.xsl │ ├── graphics.xsl │ ├── lists.xsl │ ├── marginals.xsl │ ├── maths.xsl │ ├── omml2mml.xsl │ ├── ooxml-namespaces.txt │ ├── paragraphs.xsl │ ├── pass0.xsl │ ├── pass2.xsl │ ├── tables.xsl │ ├── textruns.xsl │ ├── toc.xsl │ └── wordsections.xsl ├── misc │ ├── check-docx-and-annotate.xsl │ └── checkword.xsl ├── tei.xml ├── temp │ ├── [Content_Types].xml │ ├── _rels │ │ └── .rels │ ├── customXml │ │ ├── _rels │ │ │ └── item1.xml.rels │ │ ├── item1.xml │ │ └── itemProps1.xml │ ├── docProps │ │ ├── app.xml │ │ └── core.xml │ └── word │ │ ├── _rels │ │ └── document.xml.rels │ │ ├── document.xml │ │ ├── fontTable.xml │ │ ├── numbering.xml │ │ ├── settings.xml │ │ ├── styles.xml │ │ ├── theme │ │ └── theme1.xml │ │ └── webSettings.xml ├── to │ ├── application.xsl │ ├── comments.xsl │ ├── content-types.xsl │ ├── drama.xsl │ ├── dynamic.xsl │ ├── endnotes.xsl │ ├── footers.xsl │ ├── footnotes.xsl │ ├── functions.xsl │ ├── graphics.xsl │ ├── headers.xsl │ ├── lists.xsl │ ├── maths.xsl │ ├── mml2omml.xsl │ ├── numbering-definition.xsl │ ├── placeholders.xsl │ ├── relationships.xsl │ ├── settings.xsl │ ├── tagdocs.xsl │ ├── tei-docx-verbatim.xsl │ ├── teitodocx.xsl │ ├── templates │ │ └── default.xml │ └── wordsections.xsl ├── tools │ ├── build.xml │ ├── fixdocprop.xsl │ ├── fixdotrels.xsl │ ├── fixgraphics.xsl │ ├── fixstyle │ ├── fixstyle.xsl │ └── listgraphics.xsl └── variables.xsl ├── embeddings └── _____Microsoft_Excel.xlsx ├── media ├── image1.png ├── image2.emf ├── image2.png ├── image20.emf ├── image3.png ├── image4.png ├── image5.png ├── image6.png └── image7.png ├── nlm ├── build-to.xml ├── nlm_3_to_nlm_2.3.xsl └── tei_to_nlm.xsl ├── profiles ├── acm │ ├── README.txt │ ├── latex │ │ └── to.xsl │ └── pdf │ │ └── to.xsl ├── adams │ ├── README.txt │ └── docx │ │ └── from.xsl ├── agora │ ├── README.txt │ ├── docx │ │ ├── agora-word-template.dotx │ │ ├── default-functions.xsl │ │ ├── from-orig.xsl │ │ ├── from-post.xsl │ │ ├── from.xsl │ │ ├── old-to.xsl │ │ └── to.xsl │ ├── html │ │ ├── from.xsl │ │ ├── tei-agora.css │ │ └── to.xsl │ ├── html5 │ │ └── to.xsl │ └── latex │ │ └── to.xsl ├── default │ ├── README.txt │ ├── bibtex │ │ └── to.xsl │ ├── cocoa │ │ ├── from.xsl │ │ └── plugin.xml │ ├── csv │ │ ├── from.xsl │ │ ├── plugin.xml │ │ └── to.xsl │ ├── docbook │ │ ├── from.xsl │ │ └── to.xsl │ ├── docx │ │ ├── from.xsl │ │ ├── headersfooters.xml │ │ ├── template.docx │ │ └── to.xsl │ ├── dtd │ │ └── to.xsl │ ├── epub │ │ ├── cover-template.jpg │ │ └── to.xsl │ ├── epub3 │ │ ├── cover-template.jpg │ │ └── to.xsl │ ├── fo │ │ └── to.xsl │ ├── html │ │ ├── from.xsl │ │ ├── oddhtml.xsl │ │ └── to.xsl │ ├── html5 │ │ └── to.xsl │ ├── ibooks │ │ ├── cover-template.jpg │ │ ├── cover.jpg │ │ └── to.xsl │ ├── json │ │ └── to.xsl │ ├── latex │ │ └── to.xsl │ ├── lite │ │ └── to.xsl │ ├── markdown │ │ ├── from.xsl │ │ ├── plugin.xml │ │ └── to.xsl │ ├── nlm │ │ └── to.xsl │ ├── odd │ │ └── to.xsl │ ├── oddhtml │ │ └── to.xsl │ ├── oddjson │ │ └── to.xsl │ ├── odt │ │ ├── from.xsl │ │ ├── template.odt │ │ └── to.xsl │ ├── p4 │ │ ├── CHANGES.txt │ │ └── from.xsl │ ├── pdf │ │ └── to.xsl │ ├── rdf │ │ └── to.xsl │ ├── relaxng │ │ └── to.xsl │ ├── schematron │ │ └── to.xsl │ ├── simple │ │ └── to.xsl │ ├── slides │ │ ├── logo.png │ │ └── to.xsl │ ├── tcp │ │ └── from.xsl │ ├── tei-fo.xsl │ ├── txt │ │ └── to.xsl │ ├── verbatimxml │ │ └── to.xsl │ ├── wordpress │ │ ├── from.xsl │ │ └── plugin.xml │ ├── xlsx │ │ └── from.xsl │ └── xml │ │ └── to.xsl ├── dhconvalidator │ ├── docx │ │ └── from.xsl │ ├── html │ │ └── to.xsl │ └── odt │ │ └── from.xsl ├── dhoxss │ ├── README.txt │ ├── html │ │ └── to.xsl │ └── slides │ │ ├── logo.png │ │ └── to.xsl ├── enrich │ ├── README.txt │ ├── docx │ │ ├── from.xsl │ │ ├── template.docx │ │ └── to.xsl │ ├── fo │ │ └── to.xsl │ ├── html │ │ └── to.xsl │ └── latex │ │ └── to.xsl ├── iso │ ├── README.txt │ ├── check-docx.xsl │ ├── docx │ │ ├── addisometa.xsl │ │ ├── fixdotrels.xsl │ │ ├── fixstyle │ │ ├── fixstyle.xsl │ │ ├── from-pass2.xsl │ │ ├── from-pass3.xsl │ │ ├── from.xsl │ │ ├── iso-functions.xsl │ │ ├── iso-variables.xsl │ │ ├── makecoverpages.xsl │ │ ├── makecoverpages2.xsl │ │ ├── metadatamerge.xsl │ │ ├── model │ │ │ ├── model_en.docx │ │ │ ├── model_fr.docx │ │ │ └── model_iso_is_60_en.docx │ │ ├── styles.xml │ │ ├── tbx.xsl │ │ ├── template.docx │ │ ├── template_orig.docx │ │ └── to.xsl │ ├── epub │ │ ├── cover.jpg │ │ └── to.xsl │ ├── fo │ │ └── to.xsl │ ├── html │ │ ├── cals.xsl │ │ ├── iso.css │ │ ├── logo_iso.gif │ │ ├── tbx.xsl │ │ ├── to-fr.xsl │ │ ├── to.xsl │ │ └── web.xsl │ ├── iso-extracts.css │ ├── iso.css │ ├── iso2changes.xsl │ ├── iso2meta.xsl │ ├── iso2rss.xsl │ ├── iso2terms.xsl │ ├── iso2toc.xsl │ ├── isofooter.xsl │ ├── isoheader.xsl │ ├── isotei-schema.xsl │ ├── isoutils.xsl │ ├── latex │ │ └── to.xsl │ ├── removechanges.xsl │ ├── schema │ │ ├── a.xsd │ │ ├── examples.xsd │ │ ├── extensions.sch │ │ ├── isotei-lite.dtd │ │ ├── isotei-lite.nvdl │ │ ├── isotei-lite.rnc │ │ ├── isotei-lite.rng │ │ ├── isotei-lite.sch │ │ ├── isotei-lite.xsd │ │ ├── isotei-lite.xsl │ │ ├── isotei-odd.dtd │ │ ├── isotei-odd.nvdl │ │ ├── isotei-odd.rnc │ │ ├── isotei-odd.rng │ │ ├── isotei-odd.sch │ │ ├── isotei-odd.xsd │ │ ├── isotei-odd.xsl │ │ ├── isotei.dtd │ │ ├── isotei.nvdl │ │ ├── isotei.rnc │ │ ├── isotei.rng │ │ ├── isotei.sch │ │ ├── isotei.xsd │ │ ├── isotei.xsl │ │ ├── main.xsd │ │ ├── math.xsd │ │ ├── mathml.xsd │ │ ├── mathml2-main.rng │ │ ├── mathml2-qname-1.mod.rng │ │ ├── mathml2.rng │ │ ├── ns1.xsd │ │ ├── ns2.xsd │ │ ├── relax.rng │ │ ├── relaxng.rng │ │ ├── rng.xsd │ │ ├── schematron.rng │ │ ├── structure.xsd │ │ ├── svg11.rng │ │ ├── t.xsd │ │ ├── teidocx.xsd │ │ ├── teix.xsd │ │ ├── template.nvdl │ │ ├── test.xsl │ │ ├── test2.xsl │ │ ├── test3.xsl │ │ ├── tm9901.xsd │ │ ├── w.xsd │ │ ├── xinclude.xsd │ │ ├── xlink.xsd │ │ └── xml.xsd │ ├── tbx │ │ └── to.xsl │ └── validate.xsl ├── jsi │ ├── README.txt │ ├── docx │ │ ├── from.xsl │ │ ├── template.docx │ │ └── template.dotx │ └── html │ │ ├── jsi-tei.css │ │ └── to.xsl ├── jtei │ ├── i18n.xsl │ ├── jtei.common.xsl │ ├── odt │ │ ├── odt.common.xsl │ │ ├── template.odt │ │ └── to.xsl │ ├── openedition │ │ └── to.xsl │ └── pdf │ │ └── to.xsl ├── oepack │ ├── README.txt │ ├── epub │ │ ├── cover.jpg │ │ ├── jquery-1.6.1.min.js │ │ ├── jquery-css-transform.js │ │ ├── oepack.css │ │ ├── popup.js │ │ ├── rotate3Di.js │ │ └── to.xsl │ └── html │ │ ├── from.xsl │ │ ├── otatext.css │ │ └── to.xsl ├── ota │ ├── README.txt │ ├── docx │ │ ├── template.docx │ │ └── to.xsl │ ├── epub │ │ ├── cover.jpg │ │ ├── ota.css │ │ └── to.xsl │ ├── epub3 │ │ ├── cover.jpg │ │ └── to.xsl │ ├── html │ │ ├── from.xsl │ │ └── to.xsl │ └── tcp │ │ └── from.xsl ├── otapages │ ├── README.txt │ ├── epub │ │ ├── cover.jpg │ │ ├── ota.css │ │ └── to.xsl │ └── epub3 │ │ ├── cover.jpg │ │ ├── ota.css │ │ └── to.xsl ├── oucscourses │ ├── README.txt │ └── docx │ │ ├── from.xsl │ │ ├── headersfooters.xml │ │ ├── template.docx │ │ └── to.xsl ├── oulipo │ ├── README.txt │ ├── docx │ │ ├── from.xsl │ │ ├── template.docx │ │ ├── template.dotx │ │ └── to.xsl │ ├── from_common.xsl │ ├── html │ │ ├── oulipo.css │ │ └── to.xsl │ ├── latex │ │ └── to.xsl │ ├── odt │ │ └── from.xsl │ ├── pdf │ │ └── to.xsl │ └── slides │ │ ├── logo.png │ │ └── to.xsl ├── oxford │ ├── README.txt │ ├── docx │ │ ├── from.xsl │ │ ├── template.docx │ │ └── to.xsl │ ├── epub │ │ ├── cover.jpg │ │ ├── oxford.css │ │ └── to.xsl │ ├── html │ │ └── to.xsl │ ├── latex │ │ └── to.xsl │ ├── p4 │ │ └── from.xsl │ ├── pdf │ │ └── to.xsl │ └── slides │ │ ├── logo.png │ │ └── to.xsl ├── readme │ ├── README.txt │ ├── html │ │ └── to.xsl │ └── txt │ │ └── to.xsl ├── saxonce │ ├── README.txt │ └── html │ │ └── to.xsl ├── sciencejournal │ ├── README.txt │ ├── docx │ │ ├── from.xsl │ │ ├── template.docx │ │ └── to.xsl │ ├── epub │ │ ├── cover.jpg │ │ └── to.xsl │ ├── html │ │ └── to.xsl │ ├── latex │ │ └── to.xsl │ └── sciencejournal.css ├── simple │ └── docx │ │ └── from.xsl ├── tcp │ ├── README.txt │ ├── epub │ │ ├── cover.jpg │ │ ├── tcp.css │ │ └── to.xsl │ └── html5 │ │ ├── tcp.css │ │ ├── tcplogo.png │ │ └── to.xsl ├── tei │ ├── README.txt │ ├── docx │ │ ├── from.xsl │ │ ├── template.docx │ │ └── to.xsl │ ├── dtd │ │ └── to.xsl │ ├── epub │ │ ├── guidelines-print.css │ │ ├── guidelines.css │ │ ├── odd.css │ │ └── to.xsl │ ├── epub3 │ │ ├── guidelines-print.css │ │ ├── guidelines.css │ │ ├── odd.css │ │ └── to.xsl │ ├── fo │ │ └── to.xsl │ ├── html │ │ └── to.xsl │ ├── html5 │ │ └── to.xsl │ ├── latex │ │ └── to.xsl │ ├── odt │ │ ├── from.xsl │ │ ├── template.odt │ │ └── to.xsl │ ├── rdf │ │ └── to.xsl │ ├── relaxng │ │ └── to.xsl │ └── slides │ │ ├── logo.png │ │ └── to.xsl ├── teikindle │ ├── README.txt │ └── epub │ │ ├── guidelines-print.css │ │ ├── guidelines.css │ │ ├── odd.css │ │ └── to.xsl └── transcription │ ├── README.txt │ └── docx │ ├── from.xsl │ ├── template.docx │ └── to.xsl └── temp └── tei.xml /.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/.classpath -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/.gitignore -------------------------------------------------------------------------------- /.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/.project -------------------------------------------------------------------------------- /.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/.settings/org.eclipse.jdt.core.prefs -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/README.md -------------------------------------------------------------------------------- /article1.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/article1.docx -------------------------------------------------------------------------------- /article1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/article1.xml -------------------------------------------------------------------------------- /article2.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/article2.docx -------------------------------------------------------------------------------- /article2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/article2.xml -------------------------------------------------------------------------------- /article_english.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/article_english.docx -------------------------------------------------------------------------------- /article_english.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/article_english.xml -------------------------------------------------------------------------------- /lib/antlr-2.7.7.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/lib/antlr-2.7.7.jar -------------------------------------------------------------------------------- /lib/antlr-runtime-3.5.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/lib/antlr-runtime-3.5.2.jar -------------------------------------------------------------------------------- /lib/avalon-framework-api-4.3.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/lib/avalon-framework-api-4.3.1.jar -------------------------------------------------------------------------------- /lib/avalon-framework-impl-4.3.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/lib/avalon-framework-impl-4.3.1.jar -------------------------------------------------------------------------------- /lib/commons-codec-1.10.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/lib/commons-codec-1.10.jar -------------------------------------------------------------------------------- /lib/commons-io-2.4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/lib/commons-io-2.4.jar -------------------------------------------------------------------------------- /lib/commons-lang3-3.4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/lib/commons-lang3-3.4.jar -------------------------------------------------------------------------------- /lib/commons-logging-1.1.3.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/lib/commons-logging-1.1.3.jar -------------------------------------------------------------------------------- /lib/docx4j-3.3.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/lib/docx4j-3.3.2.jar -------------------------------------------------------------------------------- /lib/guava-19.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/lib/guava-19.0.jar -------------------------------------------------------------------------------- /lib/httpclient-4.5.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/lib/httpclient-4.5.2.jar -------------------------------------------------------------------------------- /lib/httpcore-4.4.4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/lib/httpcore-4.4.4.jar -------------------------------------------------------------------------------- /lib/jackson-annotations-2.7.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/lib/jackson-annotations-2.7.0.jar -------------------------------------------------------------------------------- /lib/jackson-core-2.7.3.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/lib/jackson-core-2.7.3.jar -------------------------------------------------------------------------------- /lib/jackson-databind-2.7.3.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/lib/jackson-databind-2.7.3.jar -------------------------------------------------------------------------------- /lib/jaxb-svg11-1.0.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/lib/jaxb-svg11-1.0.2.jar -------------------------------------------------------------------------------- /lib/lorem-2.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/lib/lorem-2.0.jar -------------------------------------------------------------------------------- /lib/mbassador-1.2.4.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/lib/mbassador-1.2.4.2.jar -------------------------------------------------------------------------------- /lib/serializer-2.7.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/lib/serializer-2.7.2.jar -------------------------------------------------------------------------------- /lib/slf4j-api-1.7.21.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/lib/slf4j-api-1.7.21.jar -------------------------------------------------------------------------------- /lib/stringtemplate-3.2.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/lib/stringtemplate-3.2.1.jar -------------------------------------------------------------------------------- /lib/wmf2svg-0.9.8.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/lib/wmf2svg-0.9.8.jar -------------------------------------------------------------------------------- /lib/xalan-2.7.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/lib/xalan-2.7.2.jar -------------------------------------------------------------------------------- /lib/xmlgraphics-commons-2.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/lib/xmlgraphics-commons-2.1.jar -------------------------------------------------------------------------------- /src/doc/transformation/xml/CustomExceptions.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/src/doc/transformation/xml/CustomExceptions.java -------------------------------------------------------------------------------- /src/doc/transformation/xml/customMethods.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/src/doc/transformation/xml/customMethods.java -------------------------------------------------------------------------------- /src/doc/transformation/xml/docIngestion.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/src/doc/transformation/xml/docIngestion.java -------------------------------------------------------------------------------- /src/doc/transformation/xml/transformerAbstractKey.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/src/doc/transformation/xml/transformerAbstractKey.java -------------------------------------------------------------------------------- /src/doc/transformation/xml/transformerArticleBack.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/src/doc/transformation/xml/transformerArticleBack.java -------------------------------------------------------------------------------- /src/doc/transformation/xml/transformerBiblAMA.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/src/doc/transformation/xml/transformerBiblAMA.java -------------------------------------------------------------------------------- /src/doc/transformation/xml/transformerFigRefs.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/src/doc/transformation/xml/transformerFigRefs.java -------------------------------------------------------------------------------- /src/doc/transformation/xml/transformerFigures.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/src/doc/transformation/xml/transformerFigures.java -------------------------------------------------------------------------------- /src/doc/transformation/xml/transformerInTextCit.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/src/doc/transformation/xml/transformerInTextCit.java -------------------------------------------------------------------------------- /src/doc/transformation/xml/transformerMeta.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/src/doc/transformation/xml/transformerMeta.java -------------------------------------------------------------------------------- /src/doc/transformation/xml/transformerTableRefs.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/src/doc/transformation/xml/transformerTableRefs.java -------------------------------------------------------------------------------- /src/doc/transformation/xml/transformerTables.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/src/doc/transformation/xml/transformerTables.java -------------------------------------------------------------------------------- /stylesheets/charts/_rels/chart1.xml.rels: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/charts/_rels/chart1.xml.rels -------------------------------------------------------------------------------- /stylesheets/charts/chart1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/charts/chart1.xml -------------------------------------------------------------------------------- /stylesheets/charts/colors1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/charts/colors1.xml -------------------------------------------------------------------------------- /stylesheets/charts/style1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/charts/style1.xml -------------------------------------------------------------------------------- /stylesheets/common/common.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/common/common.xsl -------------------------------------------------------------------------------- /stylesheets/common/common_core.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/common/common_core.xsl -------------------------------------------------------------------------------- /stylesheets/common/common_figures.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/common/common_figures.xsl -------------------------------------------------------------------------------- /stylesheets/common/common_gaiji.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/common/common_gaiji.xsl -------------------------------------------------------------------------------- /stylesheets/common/common_header.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/common/common_header.xsl -------------------------------------------------------------------------------- /stylesheets/common/common_linking.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/common/common_linking.xsl -------------------------------------------------------------------------------- /stylesheets/common/common_makeTEIStructure.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/common/common_makeTEIStructure.xsl -------------------------------------------------------------------------------- /stylesheets/common/common_msdescription.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/common/common_msdescription.xsl -------------------------------------------------------------------------------- /stylesheets/common/common_param.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/common/common_param.xsl -------------------------------------------------------------------------------- /stylesheets/common/common_tagdocs.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/common/common_tagdocs.xsl -------------------------------------------------------------------------------- /stylesheets/common/common_textcrit.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/common/common_textcrit.xsl -------------------------------------------------------------------------------- /stylesheets/common/common_textstructure.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/common/common_textstructure.xsl -------------------------------------------------------------------------------- /stylesheets/common/functions.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/common/functions.xsl -------------------------------------------------------------------------------- /stylesheets/common/i18n.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/common/i18n.xsl -------------------------------------------------------------------------------- /stylesheets/common/identity.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/common/identity.xsl -------------------------------------------------------------------------------- /stylesheets/common/jsonlib.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/common/jsonlib.xsl -------------------------------------------------------------------------------- /stylesheets/common/teianttasks.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/common/teianttasks.xml -------------------------------------------------------------------------------- /stylesheets/common/verbatim.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/common/verbatim.xsl -------------------------------------------------------------------------------- /stylesheets/docx/build-from.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/docx/build-from.xml -------------------------------------------------------------------------------- /stylesheets/docx/build-to.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/docx/build-to.xml -------------------------------------------------------------------------------- /stylesheets/docx/from/docxtotei.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/docx/from/docxtotei.xsl -------------------------------------------------------------------------------- /stylesheets/docx/from/dynamic/tests/test-toc-scenario.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/docx/from/dynamic/tests/test-toc-scenario.xml -------------------------------------------------------------------------------- /stylesheets/docx/from/dynamic/tests/xspec/test-toc-scenario-result.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/docx/from/dynamic/tests/xspec/test-toc-scenario-result.html -------------------------------------------------------------------------------- /stylesheets/docx/from/dynamic/tests/xspec/test-toc-scenario-result.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/docx/from/dynamic/tests/xspec/test-toc-scenario-result.xml -------------------------------------------------------------------------------- /stylesheets/docx/from/dynamic/tests/xspec/test-toc-scenario.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/docx/from/dynamic/tests/xspec/test-toc-scenario.xsl -------------------------------------------------------------------------------- /stylesheets/docx/from/fields.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/docx/from/fields.xsl -------------------------------------------------------------------------------- /stylesheets/docx/from/functions.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/docx/from/functions.xsl -------------------------------------------------------------------------------- /stylesheets/docx/from/graphics.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/docx/from/graphics.xsl -------------------------------------------------------------------------------- /stylesheets/docx/from/lists.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/docx/from/lists.xsl -------------------------------------------------------------------------------- /stylesheets/docx/from/marginals.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/docx/from/marginals.xsl -------------------------------------------------------------------------------- /stylesheets/docx/from/maths.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/docx/from/maths.xsl -------------------------------------------------------------------------------- /stylesheets/docx/from/omml2mml.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/docx/from/omml2mml.xsl -------------------------------------------------------------------------------- /stylesheets/docx/from/ooxml-namespaces.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/docx/from/ooxml-namespaces.txt -------------------------------------------------------------------------------- /stylesheets/docx/from/paragraphs.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/docx/from/paragraphs.xsl -------------------------------------------------------------------------------- /stylesheets/docx/from/pass0.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/docx/from/pass0.xsl -------------------------------------------------------------------------------- /stylesheets/docx/from/pass2.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/docx/from/pass2.xsl -------------------------------------------------------------------------------- /stylesheets/docx/from/tables.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/docx/from/tables.xsl -------------------------------------------------------------------------------- /stylesheets/docx/from/textruns.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/docx/from/textruns.xsl -------------------------------------------------------------------------------- /stylesheets/docx/from/toc.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/docx/from/toc.xsl -------------------------------------------------------------------------------- /stylesheets/docx/from/wordsections.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/docx/from/wordsections.xsl -------------------------------------------------------------------------------- /stylesheets/docx/misc/check-docx-and-annotate.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/docx/misc/check-docx-and-annotate.xsl -------------------------------------------------------------------------------- /stylesheets/docx/misc/checkword.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/docx/misc/checkword.xsl -------------------------------------------------------------------------------- /stylesheets/docx/tei.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/docx/tei.xml -------------------------------------------------------------------------------- /stylesheets/docx/temp/[Content_Types].xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/docx/temp/[Content_Types].xml -------------------------------------------------------------------------------- /stylesheets/docx/temp/_rels/.rels: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/docx/temp/_rels/.rels -------------------------------------------------------------------------------- /stylesheets/docx/temp/customXml/_rels/item1.xml.rels: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/docx/temp/customXml/_rels/item1.xml.rels -------------------------------------------------------------------------------- /stylesheets/docx/temp/customXml/item1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/docx/temp/customXml/item1.xml -------------------------------------------------------------------------------- /stylesheets/docx/temp/customXml/itemProps1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/docx/temp/customXml/itemProps1.xml -------------------------------------------------------------------------------- /stylesheets/docx/temp/docProps/app.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/docx/temp/docProps/app.xml -------------------------------------------------------------------------------- /stylesheets/docx/temp/docProps/core.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/docx/temp/docProps/core.xml -------------------------------------------------------------------------------- /stylesheets/docx/temp/word/_rels/document.xml.rels: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/docx/temp/word/_rels/document.xml.rels -------------------------------------------------------------------------------- /stylesheets/docx/temp/word/document.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/docx/temp/word/document.xml -------------------------------------------------------------------------------- /stylesheets/docx/temp/word/fontTable.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/docx/temp/word/fontTable.xml -------------------------------------------------------------------------------- /stylesheets/docx/temp/word/numbering.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/docx/temp/word/numbering.xml -------------------------------------------------------------------------------- /stylesheets/docx/temp/word/settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/docx/temp/word/settings.xml -------------------------------------------------------------------------------- /stylesheets/docx/temp/word/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/docx/temp/word/styles.xml -------------------------------------------------------------------------------- /stylesheets/docx/temp/word/theme/theme1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/docx/temp/word/theme/theme1.xml -------------------------------------------------------------------------------- /stylesheets/docx/temp/word/webSettings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/docx/temp/word/webSettings.xml -------------------------------------------------------------------------------- /stylesheets/docx/to/application.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/docx/to/application.xsl -------------------------------------------------------------------------------- /stylesheets/docx/to/comments.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/docx/to/comments.xsl -------------------------------------------------------------------------------- /stylesheets/docx/to/content-types.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/docx/to/content-types.xsl -------------------------------------------------------------------------------- /stylesheets/docx/to/drama.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/docx/to/drama.xsl -------------------------------------------------------------------------------- /stylesheets/docx/to/dynamic.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/docx/to/dynamic.xsl -------------------------------------------------------------------------------- /stylesheets/docx/to/endnotes.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/docx/to/endnotes.xsl -------------------------------------------------------------------------------- /stylesheets/docx/to/footers.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/docx/to/footers.xsl -------------------------------------------------------------------------------- /stylesheets/docx/to/footnotes.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/docx/to/footnotes.xsl -------------------------------------------------------------------------------- /stylesheets/docx/to/functions.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/docx/to/functions.xsl -------------------------------------------------------------------------------- /stylesheets/docx/to/graphics.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/docx/to/graphics.xsl -------------------------------------------------------------------------------- /stylesheets/docx/to/headers.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/docx/to/headers.xsl -------------------------------------------------------------------------------- /stylesheets/docx/to/lists.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/docx/to/lists.xsl -------------------------------------------------------------------------------- /stylesheets/docx/to/maths.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/docx/to/maths.xsl -------------------------------------------------------------------------------- /stylesheets/docx/to/mml2omml.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/docx/to/mml2omml.xsl -------------------------------------------------------------------------------- /stylesheets/docx/to/numbering-definition.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/docx/to/numbering-definition.xsl -------------------------------------------------------------------------------- /stylesheets/docx/to/placeholders.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/docx/to/placeholders.xsl -------------------------------------------------------------------------------- /stylesheets/docx/to/relationships.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/docx/to/relationships.xsl -------------------------------------------------------------------------------- /stylesheets/docx/to/settings.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/docx/to/settings.xsl -------------------------------------------------------------------------------- /stylesheets/docx/to/tagdocs.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/docx/to/tagdocs.xsl -------------------------------------------------------------------------------- /stylesheets/docx/to/tei-docx-verbatim.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/docx/to/tei-docx-verbatim.xsl -------------------------------------------------------------------------------- /stylesheets/docx/to/teitodocx.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/docx/to/teitodocx.xsl -------------------------------------------------------------------------------- /stylesheets/docx/to/templates/default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/docx/to/templates/default.xml -------------------------------------------------------------------------------- /stylesheets/docx/to/wordsections.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/docx/to/wordsections.xsl -------------------------------------------------------------------------------- /stylesheets/docx/tools/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/docx/tools/build.xml -------------------------------------------------------------------------------- /stylesheets/docx/tools/fixdocprop.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/docx/tools/fixdocprop.xsl -------------------------------------------------------------------------------- /stylesheets/docx/tools/fixdotrels.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/docx/tools/fixdotrels.xsl -------------------------------------------------------------------------------- /stylesheets/docx/tools/fixgraphics.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/docx/tools/fixgraphics.xsl -------------------------------------------------------------------------------- /stylesheets/docx/tools/fixstyle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/docx/tools/fixstyle -------------------------------------------------------------------------------- /stylesheets/docx/tools/fixstyle.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/docx/tools/fixstyle.xsl -------------------------------------------------------------------------------- /stylesheets/docx/tools/listgraphics.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/docx/tools/listgraphics.xsl -------------------------------------------------------------------------------- /stylesheets/docx/variables.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/docx/variables.xsl -------------------------------------------------------------------------------- /stylesheets/embeddings/_____Microsoft_Excel.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/embeddings/_____Microsoft_Excel.xlsx -------------------------------------------------------------------------------- /stylesheets/media/image1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/media/image1.png -------------------------------------------------------------------------------- /stylesheets/media/image2.emf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/media/image2.emf -------------------------------------------------------------------------------- /stylesheets/media/image2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/media/image2.png -------------------------------------------------------------------------------- /stylesheets/media/image20.emf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/media/image20.emf -------------------------------------------------------------------------------- /stylesheets/media/image3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/media/image3.png -------------------------------------------------------------------------------- /stylesheets/media/image4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/media/image4.png -------------------------------------------------------------------------------- /stylesheets/media/image5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/media/image5.png -------------------------------------------------------------------------------- /stylesheets/media/image6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/media/image6.png -------------------------------------------------------------------------------- /stylesheets/media/image7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/media/image7.png -------------------------------------------------------------------------------- /stylesheets/nlm/build-to.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/nlm/build-to.xml -------------------------------------------------------------------------------- /stylesheets/nlm/nlm_3_to_nlm_2.3.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/nlm/nlm_3_to_nlm_2.3.xsl -------------------------------------------------------------------------------- /stylesheets/nlm/tei_to_nlm.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/nlm/tei_to_nlm.xsl -------------------------------------------------------------------------------- /stylesheets/profiles/acm/README.txt: -------------------------------------------------------------------------------- 1 | Assocation for Computing Machinery journals 2 | -------------------------------------------------------------------------------- /stylesheets/profiles/acm/latex/to.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/acm/latex/to.xsl -------------------------------------------------------------------------------- /stylesheets/profiles/acm/pdf/to.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/acm/pdf/to.xsl -------------------------------------------------------------------------------- /stylesheets/profiles/adams/README.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /stylesheets/profiles/adams/docx/from.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/adams/docx/from.xsl -------------------------------------------------------------------------------- /stylesheets/profiles/agora/README.txt: -------------------------------------------------------------------------------- 1 | AGORA project 2 | -------------------------------------------------------------------------------- /stylesheets/profiles/agora/docx/agora-word-template.dotx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/agora/docx/agora-word-template.dotx -------------------------------------------------------------------------------- /stylesheets/profiles/agora/docx/default-functions.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/agora/docx/default-functions.xsl -------------------------------------------------------------------------------- /stylesheets/profiles/agora/docx/from-orig.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/agora/docx/from-orig.xsl -------------------------------------------------------------------------------- /stylesheets/profiles/agora/docx/from-post.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/agora/docx/from-post.xsl -------------------------------------------------------------------------------- /stylesheets/profiles/agora/docx/from.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/agora/docx/from.xsl -------------------------------------------------------------------------------- /stylesheets/profiles/agora/docx/old-to.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/agora/docx/old-to.xsl -------------------------------------------------------------------------------- /stylesheets/profiles/agora/docx/to.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/agora/docx/to.xsl -------------------------------------------------------------------------------- /stylesheets/profiles/agora/html/from.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/agora/html/from.xsl -------------------------------------------------------------------------------- /stylesheets/profiles/agora/html/tei-agora.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/agora/html/tei-agora.css -------------------------------------------------------------------------------- /stylesheets/profiles/agora/html/to.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/agora/html/to.xsl -------------------------------------------------------------------------------- /stylesheets/profiles/agora/html5/to.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/agora/html5/to.xsl -------------------------------------------------------------------------------- /stylesheets/profiles/agora/latex/to.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/agora/latex/to.xsl -------------------------------------------------------------------------------- /stylesheets/profiles/default/README.txt: -------------------------------------------------------------------------------- 1 | the default customization 2 | -------------------------------------------------------------------------------- /stylesheets/profiles/default/bibtex/to.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/default/bibtex/to.xsl -------------------------------------------------------------------------------- /stylesheets/profiles/default/cocoa/from.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/default/cocoa/from.xsl -------------------------------------------------------------------------------- /stylesheets/profiles/default/cocoa/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/default/cocoa/plugin.xml -------------------------------------------------------------------------------- /stylesheets/profiles/default/csv/from.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/default/csv/from.xsl -------------------------------------------------------------------------------- /stylesheets/profiles/default/csv/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/default/csv/plugin.xml -------------------------------------------------------------------------------- /stylesheets/profiles/default/csv/to.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/default/csv/to.xsl -------------------------------------------------------------------------------- /stylesheets/profiles/default/docbook/from.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/default/docbook/from.xsl -------------------------------------------------------------------------------- /stylesheets/profiles/default/docbook/to.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/default/docbook/to.xsl -------------------------------------------------------------------------------- /stylesheets/profiles/default/docx/from.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/default/docx/from.xsl -------------------------------------------------------------------------------- /stylesheets/profiles/default/docx/headersfooters.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/default/docx/headersfooters.xml -------------------------------------------------------------------------------- /stylesheets/profiles/default/docx/template.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/default/docx/template.docx -------------------------------------------------------------------------------- /stylesheets/profiles/default/docx/to.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/default/docx/to.xsl -------------------------------------------------------------------------------- /stylesheets/profiles/default/dtd/to.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/default/dtd/to.xsl -------------------------------------------------------------------------------- /stylesheets/profiles/default/epub/cover-template.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/default/epub/cover-template.jpg -------------------------------------------------------------------------------- /stylesheets/profiles/default/epub/to.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/default/epub/to.xsl -------------------------------------------------------------------------------- /stylesheets/profiles/default/epub3/cover-template.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/default/epub3/cover-template.jpg -------------------------------------------------------------------------------- /stylesheets/profiles/default/epub3/to.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/default/epub3/to.xsl -------------------------------------------------------------------------------- /stylesheets/profiles/default/fo/to.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/default/fo/to.xsl -------------------------------------------------------------------------------- /stylesheets/profiles/default/html/from.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/default/html/from.xsl -------------------------------------------------------------------------------- /stylesheets/profiles/default/html/oddhtml.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/default/html/oddhtml.xsl -------------------------------------------------------------------------------- /stylesheets/profiles/default/html/to.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/default/html/to.xsl -------------------------------------------------------------------------------- /stylesheets/profiles/default/html5/to.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/default/html5/to.xsl -------------------------------------------------------------------------------- /stylesheets/profiles/default/ibooks/cover-template.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/default/ibooks/cover-template.jpg -------------------------------------------------------------------------------- /stylesheets/profiles/default/ibooks/cover.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/default/ibooks/cover.jpg -------------------------------------------------------------------------------- /stylesheets/profiles/default/ibooks/to.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/default/ibooks/to.xsl -------------------------------------------------------------------------------- /stylesheets/profiles/default/json/to.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/default/json/to.xsl -------------------------------------------------------------------------------- /stylesheets/profiles/default/latex/to.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/default/latex/to.xsl -------------------------------------------------------------------------------- /stylesheets/profiles/default/lite/to.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/default/lite/to.xsl -------------------------------------------------------------------------------- /stylesheets/profiles/default/markdown/from.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/default/markdown/from.xsl -------------------------------------------------------------------------------- /stylesheets/profiles/default/markdown/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/default/markdown/plugin.xml -------------------------------------------------------------------------------- /stylesheets/profiles/default/markdown/to.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/default/markdown/to.xsl -------------------------------------------------------------------------------- /stylesheets/profiles/default/nlm/to.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/default/nlm/to.xsl -------------------------------------------------------------------------------- /stylesheets/profiles/default/odd/to.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/default/odd/to.xsl -------------------------------------------------------------------------------- /stylesheets/profiles/default/oddhtml/to.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/default/oddhtml/to.xsl -------------------------------------------------------------------------------- /stylesheets/profiles/default/oddjson/to.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/default/oddjson/to.xsl -------------------------------------------------------------------------------- /stylesheets/profiles/default/odt/from.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/default/odt/from.xsl -------------------------------------------------------------------------------- /stylesheets/profiles/default/odt/template.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/default/odt/template.odt -------------------------------------------------------------------------------- /stylesheets/profiles/default/odt/to.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/default/odt/to.xsl -------------------------------------------------------------------------------- /stylesheets/profiles/default/p4/CHANGES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/default/p4/CHANGES.txt -------------------------------------------------------------------------------- /stylesheets/profiles/default/p4/from.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/default/p4/from.xsl -------------------------------------------------------------------------------- /stylesheets/profiles/default/pdf/to.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/default/pdf/to.xsl -------------------------------------------------------------------------------- /stylesheets/profiles/default/rdf/to.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/default/rdf/to.xsl -------------------------------------------------------------------------------- /stylesheets/profiles/default/relaxng/to.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/default/relaxng/to.xsl -------------------------------------------------------------------------------- /stylesheets/profiles/default/schematron/to.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/default/schematron/to.xsl -------------------------------------------------------------------------------- /stylesheets/profiles/default/simple/to.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/default/simple/to.xsl -------------------------------------------------------------------------------- /stylesheets/profiles/default/slides/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/default/slides/logo.png -------------------------------------------------------------------------------- /stylesheets/profiles/default/slides/to.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/default/slides/to.xsl -------------------------------------------------------------------------------- /stylesheets/profiles/default/tcp/from.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/default/tcp/from.xsl -------------------------------------------------------------------------------- /stylesheets/profiles/default/tei-fo.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/default/tei-fo.xsl -------------------------------------------------------------------------------- /stylesheets/profiles/default/txt/to.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/default/txt/to.xsl -------------------------------------------------------------------------------- /stylesheets/profiles/default/verbatimxml/to.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/default/verbatimxml/to.xsl -------------------------------------------------------------------------------- /stylesheets/profiles/default/wordpress/from.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/default/wordpress/from.xsl -------------------------------------------------------------------------------- /stylesheets/profiles/default/wordpress/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/default/wordpress/plugin.xml -------------------------------------------------------------------------------- /stylesheets/profiles/default/xlsx/from.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/default/xlsx/from.xsl -------------------------------------------------------------------------------- /stylesheets/profiles/default/xml/to.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/default/xml/to.xsl -------------------------------------------------------------------------------- /stylesheets/profiles/dhconvalidator/docx/from.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/dhconvalidator/docx/from.xsl -------------------------------------------------------------------------------- /stylesheets/profiles/dhconvalidator/html/to.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/dhconvalidator/html/to.xsl -------------------------------------------------------------------------------- /stylesheets/profiles/dhconvalidator/odt/from.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/dhconvalidator/odt/from.xsl -------------------------------------------------------------------------------- /stylesheets/profiles/dhoxss/README.txt: -------------------------------------------------------------------------------- 1 | Oxford Digitial Humanities Summer School 2 | -------------------------------------------------------------------------------- /stylesheets/profiles/dhoxss/html/to.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/dhoxss/html/to.xsl -------------------------------------------------------------------------------- /stylesheets/profiles/dhoxss/slides/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/dhoxss/slides/logo.png -------------------------------------------------------------------------------- /stylesheets/profiles/dhoxss/slides/to.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/dhoxss/slides/to.xsl -------------------------------------------------------------------------------- /stylesheets/profiles/enrich/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/enrich/README.txt -------------------------------------------------------------------------------- /stylesheets/profiles/enrich/docx/from.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/enrich/docx/from.xsl -------------------------------------------------------------------------------- /stylesheets/profiles/enrich/docx/template.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/enrich/docx/template.docx -------------------------------------------------------------------------------- /stylesheets/profiles/enrich/docx/to.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/enrich/docx/to.xsl -------------------------------------------------------------------------------- /stylesheets/profiles/enrich/fo/to.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/enrich/fo/to.xsl -------------------------------------------------------------------------------- /stylesheets/profiles/enrich/html/to.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/enrich/html/to.xsl -------------------------------------------------------------------------------- /stylesheets/profiles/enrich/latex/to.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/enrich/latex/to.xsl -------------------------------------------------------------------------------- /stylesheets/profiles/iso/README.txt: -------------------------------------------------------------------------------- 1 | ISO documentation 2 | -------------------------------------------------------------------------------- /stylesheets/profiles/iso/check-docx.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/iso/check-docx.xsl -------------------------------------------------------------------------------- /stylesheets/profiles/iso/docx/addisometa.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/iso/docx/addisometa.xsl -------------------------------------------------------------------------------- /stylesheets/profiles/iso/docx/fixdotrels.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/iso/docx/fixdotrels.xsl -------------------------------------------------------------------------------- /stylesheets/profiles/iso/docx/fixstyle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/iso/docx/fixstyle -------------------------------------------------------------------------------- /stylesheets/profiles/iso/docx/fixstyle.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/iso/docx/fixstyle.xsl -------------------------------------------------------------------------------- /stylesheets/profiles/iso/docx/from-pass2.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/iso/docx/from-pass2.xsl -------------------------------------------------------------------------------- /stylesheets/profiles/iso/docx/from-pass3.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/iso/docx/from-pass3.xsl -------------------------------------------------------------------------------- /stylesheets/profiles/iso/docx/from.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/iso/docx/from.xsl -------------------------------------------------------------------------------- /stylesheets/profiles/iso/docx/iso-functions.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/iso/docx/iso-functions.xsl -------------------------------------------------------------------------------- /stylesheets/profiles/iso/docx/iso-variables.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/iso/docx/iso-variables.xsl -------------------------------------------------------------------------------- /stylesheets/profiles/iso/docx/makecoverpages.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/iso/docx/makecoverpages.xsl -------------------------------------------------------------------------------- /stylesheets/profiles/iso/docx/makecoverpages2.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/iso/docx/makecoverpages2.xsl -------------------------------------------------------------------------------- /stylesheets/profiles/iso/docx/metadatamerge.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/iso/docx/metadatamerge.xsl -------------------------------------------------------------------------------- /stylesheets/profiles/iso/docx/model/model_en.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/iso/docx/model/model_en.docx -------------------------------------------------------------------------------- /stylesheets/profiles/iso/docx/model/model_fr.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/iso/docx/model/model_fr.docx -------------------------------------------------------------------------------- /stylesheets/profiles/iso/docx/model/model_iso_is_60_en.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/iso/docx/model/model_iso_is_60_en.docx -------------------------------------------------------------------------------- /stylesheets/profiles/iso/docx/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/iso/docx/styles.xml -------------------------------------------------------------------------------- /stylesheets/profiles/iso/docx/tbx.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/iso/docx/tbx.xsl -------------------------------------------------------------------------------- /stylesheets/profiles/iso/docx/template.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/iso/docx/template.docx -------------------------------------------------------------------------------- /stylesheets/profiles/iso/docx/template_orig.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/iso/docx/template_orig.docx -------------------------------------------------------------------------------- /stylesheets/profiles/iso/docx/to.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/iso/docx/to.xsl -------------------------------------------------------------------------------- /stylesheets/profiles/iso/epub/cover.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/iso/epub/cover.jpg -------------------------------------------------------------------------------- /stylesheets/profiles/iso/epub/to.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/iso/epub/to.xsl -------------------------------------------------------------------------------- /stylesheets/profiles/iso/fo/to.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/iso/fo/to.xsl -------------------------------------------------------------------------------- /stylesheets/profiles/iso/html/cals.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/iso/html/cals.xsl -------------------------------------------------------------------------------- /stylesheets/profiles/iso/html/iso.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/iso/html/iso.css -------------------------------------------------------------------------------- /stylesheets/profiles/iso/html/logo_iso.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/iso/html/logo_iso.gif -------------------------------------------------------------------------------- /stylesheets/profiles/iso/html/tbx.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/iso/html/tbx.xsl -------------------------------------------------------------------------------- /stylesheets/profiles/iso/html/to-fr.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/iso/html/to-fr.xsl -------------------------------------------------------------------------------- /stylesheets/profiles/iso/html/to.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/iso/html/to.xsl -------------------------------------------------------------------------------- /stylesheets/profiles/iso/html/web.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/iso/html/web.xsl -------------------------------------------------------------------------------- /stylesheets/profiles/iso/iso-extracts.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/iso/iso-extracts.css -------------------------------------------------------------------------------- /stylesheets/profiles/iso/iso.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/iso/iso.css -------------------------------------------------------------------------------- /stylesheets/profiles/iso/iso2changes.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/iso/iso2changes.xsl -------------------------------------------------------------------------------- /stylesheets/profiles/iso/iso2meta.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/iso/iso2meta.xsl -------------------------------------------------------------------------------- /stylesheets/profiles/iso/iso2rss.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/iso/iso2rss.xsl -------------------------------------------------------------------------------- /stylesheets/profiles/iso/iso2terms.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/iso/iso2terms.xsl -------------------------------------------------------------------------------- /stylesheets/profiles/iso/iso2toc.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/iso/iso2toc.xsl -------------------------------------------------------------------------------- /stylesheets/profiles/iso/isofooter.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/iso/isofooter.xsl -------------------------------------------------------------------------------- /stylesheets/profiles/iso/isoheader.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/iso/isoheader.xsl -------------------------------------------------------------------------------- /stylesheets/profiles/iso/isotei-schema.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/iso/isotei-schema.xsl -------------------------------------------------------------------------------- /stylesheets/profiles/iso/isoutils.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/iso/isoutils.xsl -------------------------------------------------------------------------------- /stylesheets/profiles/iso/latex/to.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/iso/latex/to.xsl -------------------------------------------------------------------------------- /stylesheets/profiles/iso/removechanges.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/iso/removechanges.xsl -------------------------------------------------------------------------------- /stylesheets/profiles/iso/schema/a.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/iso/schema/a.xsd -------------------------------------------------------------------------------- /stylesheets/profiles/iso/schema/examples.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/iso/schema/examples.xsd -------------------------------------------------------------------------------- /stylesheets/profiles/iso/schema/extensions.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/iso/schema/extensions.sch -------------------------------------------------------------------------------- /stylesheets/profiles/iso/schema/isotei-lite.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/iso/schema/isotei-lite.dtd -------------------------------------------------------------------------------- /stylesheets/profiles/iso/schema/isotei-lite.nvdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/iso/schema/isotei-lite.nvdl -------------------------------------------------------------------------------- /stylesheets/profiles/iso/schema/isotei-lite.rnc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/iso/schema/isotei-lite.rnc -------------------------------------------------------------------------------- /stylesheets/profiles/iso/schema/isotei-lite.rng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/iso/schema/isotei-lite.rng -------------------------------------------------------------------------------- /stylesheets/profiles/iso/schema/isotei-lite.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/iso/schema/isotei-lite.sch -------------------------------------------------------------------------------- /stylesheets/profiles/iso/schema/isotei-lite.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/iso/schema/isotei-lite.xsd -------------------------------------------------------------------------------- /stylesheets/profiles/iso/schema/isotei-lite.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/iso/schema/isotei-lite.xsl -------------------------------------------------------------------------------- /stylesheets/profiles/iso/schema/isotei-odd.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/iso/schema/isotei-odd.dtd -------------------------------------------------------------------------------- /stylesheets/profiles/iso/schema/isotei-odd.nvdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/iso/schema/isotei-odd.nvdl -------------------------------------------------------------------------------- /stylesheets/profiles/iso/schema/isotei-odd.rnc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/iso/schema/isotei-odd.rnc -------------------------------------------------------------------------------- /stylesheets/profiles/iso/schema/isotei-odd.rng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/iso/schema/isotei-odd.rng -------------------------------------------------------------------------------- /stylesheets/profiles/iso/schema/isotei-odd.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/iso/schema/isotei-odd.sch -------------------------------------------------------------------------------- /stylesheets/profiles/iso/schema/isotei-odd.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/iso/schema/isotei-odd.xsd -------------------------------------------------------------------------------- /stylesheets/profiles/iso/schema/isotei-odd.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/iso/schema/isotei-odd.xsl -------------------------------------------------------------------------------- /stylesheets/profiles/iso/schema/isotei.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/iso/schema/isotei.dtd -------------------------------------------------------------------------------- /stylesheets/profiles/iso/schema/isotei.nvdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/iso/schema/isotei.nvdl -------------------------------------------------------------------------------- /stylesheets/profiles/iso/schema/isotei.rnc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/iso/schema/isotei.rnc -------------------------------------------------------------------------------- /stylesheets/profiles/iso/schema/isotei.rng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/iso/schema/isotei.rng -------------------------------------------------------------------------------- /stylesheets/profiles/iso/schema/isotei.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/iso/schema/isotei.sch -------------------------------------------------------------------------------- /stylesheets/profiles/iso/schema/isotei.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/iso/schema/isotei.xsd -------------------------------------------------------------------------------- /stylesheets/profiles/iso/schema/isotei.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/iso/schema/isotei.xsl -------------------------------------------------------------------------------- /stylesheets/profiles/iso/schema/main.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/iso/schema/main.xsd -------------------------------------------------------------------------------- /stylesheets/profiles/iso/schema/math.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/iso/schema/math.xsd -------------------------------------------------------------------------------- /stylesheets/profiles/iso/schema/mathml.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/iso/schema/mathml.xsd -------------------------------------------------------------------------------- /stylesheets/profiles/iso/schema/mathml2-main.rng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/iso/schema/mathml2-main.rng -------------------------------------------------------------------------------- /stylesheets/profiles/iso/schema/mathml2-qname-1.mod.rng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/iso/schema/mathml2-qname-1.mod.rng -------------------------------------------------------------------------------- /stylesheets/profiles/iso/schema/mathml2.rng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/iso/schema/mathml2.rng -------------------------------------------------------------------------------- /stylesheets/profiles/iso/schema/ns1.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/iso/schema/ns1.xsd -------------------------------------------------------------------------------- /stylesheets/profiles/iso/schema/ns2.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/iso/schema/ns2.xsd -------------------------------------------------------------------------------- /stylesheets/profiles/iso/schema/relax.rng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/iso/schema/relax.rng -------------------------------------------------------------------------------- /stylesheets/profiles/iso/schema/relaxng.rng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/iso/schema/relaxng.rng -------------------------------------------------------------------------------- /stylesheets/profiles/iso/schema/rng.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/iso/schema/rng.xsd -------------------------------------------------------------------------------- /stylesheets/profiles/iso/schema/schematron.rng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/iso/schema/schematron.rng -------------------------------------------------------------------------------- /stylesheets/profiles/iso/schema/structure.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/iso/schema/structure.xsd -------------------------------------------------------------------------------- /stylesheets/profiles/iso/schema/svg11.rng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/iso/schema/svg11.rng -------------------------------------------------------------------------------- /stylesheets/profiles/iso/schema/t.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/iso/schema/t.xsd -------------------------------------------------------------------------------- /stylesheets/profiles/iso/schema/teidocx.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/iso/schema/teidocx.xsd -------------------------------------------------------------------------------- /stylesheets/profiles/iso/schema/teix.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/iso/schema/teix.xsd -------------------------------------------------------------------------------- /stylesheets/profiles/iso/schema/template.nvdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/iso/schema/template.nvdl -------------------------------------------------------------------------------- /stylesheets/profiles/iso/schema/test.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/iso/schema/test.xsl -------------------------------------------------------------------------------- /stylesheets/profiles/iso/schema/test2.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/iso/schema/test2.xsl -------------------------------------------------------------------------------- /stylesheets/profiles/iso/schema/test3.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/iso/schema/test3.xsl -------------------------------------------------------------------------------- /stylesheets/profiles/iso/schema/tm9901.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/iso/schema/tm9901.xsd -------------------------------------------------------------------------------- /stylesheets/profiles/iso/schema/w.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/iso/schema/w.xsd -------------------------------------------------------------------------------- /stylesheets/profiles/iso/schema/xinclude.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/iso/schema/xinclude.xsd -------------------------------------------------------------------------------- /stylesheets/profiles/iso/schema/xlink.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/iso/schema/xlink.xsd -------------------------------------------------------------------------------- /stylesheets/profiles/iso/schema/xml.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/iso/schema/xml.xsd -------------------------------------------------------------------------------- /stylesheets/profiles/iso/tbx/to.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/iso/tbx/to.xsl -------------------------------------------------------------------------------- /stylesheets/profiles/iso/validate.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/iso/validate.xsl -------------------------------------------------------------------------------- /stylesheets/profiles/jsi/README.txt: -------------------------------------------------------------------------------- 1 | JSI institute 2 | -------------------------------------------------------------------------------- /stylesheets/profiles/jsi/docx/from.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/jsi/docx/from.xsl -------------------------------------------------------------------------------- /stylesheets/profiles/jsi/docx/template.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/jsi/docx/template.docx -------------------------------------------------------------------------------- /stylesheets/profiles/jsi/docx/template.dotx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/jsi/docx/template.dotx -------------------------------------------------------------------------------- /stylesheets/profiles/jsi/html/jsi-tei.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/jsi/html/jsi-tei.css -------------------------------------------------------------------------------- /stylesheets/profiles/jsi/html/to.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/jsi/html/to.xsl -------------------------------------------------------------------------------- /stylesheets/profiles/jtei/i18n.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/jtei/i18n.xsl -------------------------------------------------------------------------------- /stylesheets/profiles/jtei/jtei.common.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/jtei/jtei.common.xsl -------------------------------------------------------------------------------- /stylesheets/profiles/jtei/odt/odt.common.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/jtei/odt/odt.common.xsl -------------------------------------------------------------------------------- /stylesheets/profiles/jtei/odt/template.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/jtei/odt/template.odt -------------------------------------------------------------------------------- /stylesheets/profiles/jtei/odt/to.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/jtei/odt/to.xsl -------------------------------------------------------------------------------- /stylesheets/profiles/jtei/openedition/to.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/jtei/openedition/to.xsl -------------------------------------------------------------------------------- /stylesheets/profiles/jtei/pdf/to.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/jtei/pdf/to.xsl -------------------------------------------------------------------------------- /stylesheets/profiles/oepack/README.txt: -------------------------------------------------------------------------------- 1 | Experiments in old english teaching materials 2 | -------------------------------------------------------------------------------- /stylesheets/profiles/oepack/epub/cover.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/oepack/epub/cover.jpg -------------------------------------------------------------------------------- /stylesheets/profiles/oepack/epub/jquery-1.6.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/oepack/epub/jquery-1.6.1.min.js -------------------------------------------------------------------------------- /stylesheets/profiles/oepack/epub/jquery-css-transform.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/oepack/epub/jquery-css-transform.js -------------------------------------------------------------------------------- /stylesheets/profiles/oepack/epub/oepack.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/oepack/epub/oepack.css -------------------------------------------------------------------------------- /stylesheets/profiles/oepack/epub/popup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/oepack/epub/popup.js -------------------------------------------------------------------------------- /stylesheets/profiles/oepack/epub/rotate3Di.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/oepack/epub/rotate3Di.js -------------------------------------------------------------------------------- /stylesheets/profiles/oepack/epub/to.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/oepack/epub/to.xsl -------------------------------------------------------------------------------- /stylesheets/profiles/oepack/html/from.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/oepack/html/from.xsl -------------------------------------------------------------------------------- /stylesheets/profiles/oepack/html/otatext.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/oepack/html/otatext.css -------------------------------------------------------------------------------- /stylesheets/profiles/oepack/html/to.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/oepack/html/to.xsl -------------------------------------------------------------------------------- /stylesheets/profiles/ota/README.txt: -------------------------------------------------------------------------------- 1 | University of Oxford Text Archive 2 | -------------------------------------------------------------------------------- /stylesheets/profiles/ota/docx/template.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/ota/docx/template.docx -------------------------------------------------------------------------------- /stylesheets/profiles/ota/docx/to.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/ota/docx/to.xsl -------------------------------------------------------------------------------- /stylesheets/profiles/ota/epub/cover.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/ota/epub/cover.jpg -------------------------------------------------------------------------------- /stylesheets/profiles/ota/epub/ota.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/ota/epub/ota.css -------------------------------------------------------------------------------- /stylesheets/profiles/ota/epub/to.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/ota/epub/to.xsl -------------------------------------------------------------------------------- /stylesheets/profiles/ota/epub3/cover.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/ota/epub3/cover.jpg -------------------------------------------------------------------------------- /stylesheets/profiles/ota/epub3/to.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/ota/epub3/to.xsl -------------------------------------------------------------------------------- /stylesheets/profiles/ota/html/from.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/ota/html/from.xsl -------------------------------------------------------------------------------- /stylesheets/profiles/ota/html/to.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/ota/html/to.xsl -------------------------------------------------------------------------------- /stylesheets/profiles/ota/tcp/from.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/ota/tcp/from.xsl -------------------------------------------------------------------------------- /stylesheets/profiles/otapages/README.txt: -------------------------------------------------------------------------------- 1 | University of Oxford Text Archive making facsimile pages 2 | -------------------------------------------------------------------------------- /stylesheets/profiles/otapages/epub/cover.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/otapages/epub/cover.jpg -------------------------------------------------------------------------------- /stylesheets/profiles/otapages/epub/ota.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/otapages/epub/ota.css -------------------------------------------------------------------------------- /stylesheets/profiles/otapages/epub/to.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/otapages/epub/to.xsl -------------------------------------------------------------------------------- /stylesheets/profiles/otapages/epub3/cover.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/otapages/epub3/cover.jpg -------------------------------------------------------------------------------- /stylesheets/profiles/otapages/epub3/ota.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/otapages/epub3/ota.css -------------------------------------------------------------------------------- /stylesheets/profiles/otapages/epub3/to.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/otapages/epub3/to.xsl -------------------------------------------------------------------------------- /stylesheets/profiles/oucscourses/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/oucscourses/README.txt -------------------------------------------------------------------------------- /stylesheets/profiles/oucscourses/docx/from.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/oucscourses/docx/from.xsl -------------------------------------------------------------------------------- /stylesheets/profiles/oucscourses/docx/headersfooters.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/oucscourses/docx/headersfooters.xml -------------------------------------------------------------------------------- /stylesheets/profiles/oucscourses/docx/template.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/oucscourses/docx/template.docx -------------------------------------------------------------------------------- /stylesheets/profiles/oucscourses/docx/to.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/oucscourses/docx/to.xsl -------------------------------------------------------------------------------- /stylesheets/profiles/oulipo/README.txt: -------------------------------------------------------------------------------- 1 | OuLiPo transcription project 2 | 3 | No longer in use 4 | 5 | -------------------------------------------------------------------------------- /stylesheets/profiles/oulipo/docx/from.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/oulipo/docx/from.xsl -------------------------------------------------------------------------------- /stylesheets/profiles/oulipo/docx/template.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/oulipo/docx/template.docx -------------------------------------------------------------------------------- /stylesheets/profiles/oulipo/docx/template.dotx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/oulipo/docx/template.dotx -------------------------------------------------------------------------------- /stylesheets/profiles/oulipo/docx/to.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/oulipo/docx/to.xsl -------------------------------------------------------------------------------- /stylesheets/profiles/oulipo/from_common.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/oulipo/from_common.xsl -------------------------------------------------------------------------------- /stylesheets/profiles/oulipo/html/oulipo.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/oulipo/html/oulipo.css -------------------------------------------------------------------------------- /stylesheets/profiles/oulipo/html/to.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/oulipo/html/to.xsl -------------------------------------------------------------------------------- /stylesheets/profiles/oulipo/latex/to.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/oulipo/latex/to.xsl -------------------------------------------------------------------------------- /stylesheets/profiles/oulipo/odt/from.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/oulipo/odt/from.xsl -------------------------------------------------------------------------------- /stylesheets/profiles/oulipo/pdf/to.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/oulipo/pdf/to.xsl -------------------------------------------------------------------------------- /stylesheets/profiles/oulipo/slides/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/oulipo/slides/logo.png -------------------------------------------------------------------------------- /stylesheets/profiles/oulipo/slides/to.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/oulipo/slides/to.xsl -------------------------------------------------------------------------------- /stylesheets/profiles/oxford/README.txt: -------------------------------------------------------------------------------- 1 | University of Oxford IT Services 2 | -------------------------------------------------------------------------------- /stylesheets/profiles/oxford/docx/from.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/oxford/docx/from.xsl -------------------------------------------------------------------------------- /stylesheets/profiles/oxford/docx/template.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/oxford/docx/template.docx -------------------------------------------------------------------------------- /stylesheets/profiles/oxford/docx/to.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/oxford/docx/to.xsl -------------------------------------------------------------------------------- /stylesheets/profiles/oxford/epub/cover.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/oxford/epub/cover.jpg -------------------------------------------------------------------------------- /stylesheets/profiles/oxford/epub/oxford.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/oxford/epub/oxford.css -------------------------------------------------------------------------------- /stylesheets/profiles/oxford/epub/to.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/oxford/epub/to.xsl -------------------------------------------------------------------------------- /stylesheets/profiles/oxford/html/to.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/oxford/html/to.xsl -------------------------------------------------------------------------------- /stylesheets/profiles/oxford/latex/to.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/oxford/latex/to.xsl -------------------------------------------------------------------------------- /stylesheets/profiles/oxford/p4/from.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/oxford/p4/from.xsl -------------------------------------------------------------------------------- /stylesheets/profiles/oxford/pdf/to.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/oxford/pdf/to.xsl -------------------------------------------------------------------------------- /stylesheets/profiles/oxford/slides/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/oxford/slides/logo.png -------------------------------------------------------------------------------- /stylesheets/profiles/oxford/slides/to.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/oxford/slides/to.xsl -------------------------------------------------------------------------------- /stylesheets/profiles/readme/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/readme/README.txt -------------------------------------------------------------------------------- /stylesheets/profiles/readme/html/to.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/readme/html/to.xsl -------------------------------------------------------------------------------- /stylesheets/profiles/readme/txt/to.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/readme/txt/to.xsl -------------------------------------------------------------------------------- /stylesheets/profiles/saxonce/README.txt: -------------------------------------------------------------------------------- 1 | For use with Saxon CE (XSLT processor in Javascript) 2 | -------------------------------------------------------------------------------- /stylesheets/profiles/saxonce/html/to.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/saxonce/html/to.xsl -------------------------------------------------------------------------------- /stylesheets/profiles/sciencejournal/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/sciencejournal/README.txt -------------------------------------------------------------------------------- /stylesheets/profiles/sciencejournal/docx/from.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/sciencejournal/docx/from.xsl -------------------------------------------------------------------------------- /stylesheets/profiles/sciencejournal/docx/template.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/sciencejournal/docx/template.docx -------------------------------------------------------------------------------- /stylesheets/profiles/sciencejournal/docx/to.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/sciencejournal/docx/to.xsl -------------------------------------------------------------------------------- /stylesheets/profiles/sciencejournal/epub/cover.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/sciencejournal/epub/cover.jpg -------------------------------------------------------------------------------- /stylesheets/profiles/sciencejournal/epub/to.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/sciencejournal/epub/to.xsl -------------------------------------------------------------------------------- /stylesheets/profiles/sciencejournal/html/to.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/sciencejournal/html/to.xsl -------------------------------------------------------------------------------- /stylesheets/profiles/sciencejournal/latex/to.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/sciencejournal/latex/to.xsl -------------------------------------------------------------------------------- /stylesheets/profiles/sciencejournal/sciencejournal.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/sciencejournal/sciencejournal.css -------------------------------------------------------------------------------- /stylesheets/profiles/simple/docx/from.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/simple/docx/from.xsl -------------------------------------------------------------------------------- /stylesheets/profiles/tcp/README.txt: -------------------------------------------------------------------------------- 1 | TCP texts 2 | -------------------------------------------------------------------------------- /stylesheets/profiles/tcp/epub/cover.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/tcp/epub/cover.jpg -------------------------------------------------------------------------------- /stylesheets/profiles/tcp/epub/tcp.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/tcp/epub/tcp.css -------------------------------------------------------------------------------- /stylesheets/profiles/tcp/epub/to.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/tcp/epub/to.xsl -------------------------------------------------------------------------------- /stylesheets/profiles/tcp/html5/tcp.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/tcp/html5/tcp.css -------------------------------------------------------------------------------- /stylesheets/profiles/tcp/html5/tcplogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/tcp/html5/tcplogo.png -------------------------------------------------------------------------------- /stylesheets/profiles/tcp/html5/to.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/tcp/html5/to.xsl -------------------------------------------------------------------------------- /stylesheets/profiles/tei/README.txt: -------------------------------------------------------------------------------- 1 | Text Encoding Initiative documentation 2 | stylesheety branch 3 | -------------------------------------------------------------------------------- /stylesheets/profiles/tei/docx/from.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/tei/docx/from.xsl -------------------------------------------------------------------------------- /stylesheets/profiles/tei/docx/template.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/tei/docx/template.docx -------------------------------------------------------------------------------- /stylesheets/profiles/tei/docx/to.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/tei/docx/to.xsl -------------------------------------------------------------------------------- /stylesheets/profiles/tei/dtd/to.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/tei/dtd/to.xsl -------------------------------------------------------------------------------- /stylesheets/profiles/tei/epub/guidelines-print.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/tei/epub/guidelines-print.css -------------------------------------------------------------------------------- /stylesheets/profiles/tei/epub/guidelines.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/tei/epub/guidelines.css -------------------------------------------------------------------------------- /stylesheets/profiles/tei/epub/odd.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/tei/epub/odd.css -------------------------------------------------------------------------------- /stylesheets/profiles/tei/epub/to.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/tei/epub/to.xsl -------------------------------------------------------------------------------- /stylesheets/profiles/tei/epub3/guidelines-print.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/tei/epub3/guidelines-print.css -------------------------------------------------------------------------------- /stylesheets/profiles/tei/epub3/guidelines.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/tei/epub3/guidelines.css -------------------------------------------------------------------------------- /stylesheets/profiles/tei/epub3/odd.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/tei/epub3/odd.css -------------------------------------------------------------------------------- /stylesheets/profiles/tei/epub3/to.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/tei/epub3/to.xsl -------------------------------------------------------------------------------- /stylesheets/profiles/tei/fo/to.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/tei/fo/to.xsl -------------------------------------------------------------------------------- /stylesheets/profiles/tei/html/to.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/tei/html/to.xsl -------------------------------------------------------------------------------- /stylesheets/profiles/tei/html5/to.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/tei/html5/to.xsl -------------------------------------------------------------------------------- /stylesheets/profiles/tei/latex/to.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/tei/latex/to.xsl -------------------------------------------------------------------------------- /stylesheets/profiles/tei/odt/from.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/tei/odt/from.xsl -------------------------------------------------------------------------------- /stylesheets/profiles/tei/odt/template.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/tei/odt/template.odt -------------------------------------------------------------------------------- /stylesheets/profiles/tei/odt/to.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/tei/odt/to.xsl -------------------------------------------------------------------------------- /stylesheets/profiles/tei/rdf/to.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/tei/rdf/to.xsl -------------------------------------------------------------------------------- /stylesheets/profiles/tei/relaxng/to.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/tei/relaxng/to.xsl -------------------------------------------------------------------------------- /stylesheets/profiles/tei/slides/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/tei/slides/logo.png -------------------------------------------------------------------------------- /stylesheets/profiles/tei/slides/to.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/tei/slides/to.xsl -------------------------------------------------------------------------------- /stylesheets/profiles/teikindle/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/teikindle/README.txt -------------------------------------------------------------------------------- /stylesheets/profiles/teikindle/epub/guidelines-print.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/teikindle/epub/guidelines-print.css -------------------------------------------------------------------------------- /stylesheets/profiles/teikindle/epub/guidelines.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/teikindle/epub/guidelines.css -------------------------------------------------------------------------------- /stylesheets/profiles/teikindle/epub/odd.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/teikindle/epub/odd.css -------------------------------------------------------------------------------- /stylesheets/profiles/teikindle/epub/to.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/teikindle/epub/to.xsl -------------------------------------------------------------------------------- /stylesheets/profiles/transcription/README.txt: -------------------------------------------------------------------------------- 1 | Not sure what this is... 2 | -------------------------------------------------------------------------------- /stylesheets/profiles/transcription/docx/from.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/transcription/docx/from.xsl -------------------------------------------------------------------------------- /stylesheets/profiles/transcription/docx/template.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/transcription/docx/template.docx -------------------------------------------------------------------------------- /stylesheets/profiles/transcription/docx/to.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/profiles/transcription/docx/to.xsl -------------------------------------------------------------------------------- /stylesheets/temp/tei.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitaliy-1/DOCX2JATS/HEAD/stylesheets/temp/tei.xml --------------------------------------------------------------------------------