├── LICENCE ├── README.md ├── doctored ├── css │ ├── screen.css │ └── themes.css ├── doctored.js ├── js │ ├── app-backup.js │ ├── app-linter-worker.js │ ├── app-linters.js │ ├── app-schemas.js │ ├── app-util.js │ ├── app.js │ └── shims.js ├── libs │ ├── filesaver.js │ │ └── FileSaver.js │ └── xml.js │ │ ├── licence │ │ └── xmllint.js └── schemas │ ├── DITA │ └── 1.8 │ │ ├── DITA Base.xsd │ │ ├── DITA Bookmap.xsd │ │ ├── DITA Topic.xsd │ │ └── config.json │ ├── DocBook │ ├── DocBook 5.0.rng │ └── config.json │ ├── MARC │ ├── MARC21.xsd │ └── config.json │ ├── README.md │ ├── TEI │ ├── TEI 2.6.rng │ └── config.json │ ├── TeXML │ ├── config.json │ └── texml.rng │ ├── phyloXML │ ├── config.json │ └── phyloxml.xsd │ └── rebuild-schema-manifest.js ├── index.html ├── screen.css ├── screenshot.png ├── sync-ghpages.sh └── webserver.js /LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holloway/doctored/HEAD/LICENCE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holloway/doctored/HEAD/README.md -------------------------------------------------------------------------------- /doctored/css/screen.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holloway/doctored/HEAD/doctored/css/screen.css -------------------------------------------------------------------------------- /doctored/css/themes.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holloway/doctored/HEAD/doctored/css/themes.css -------------------------------------------------------------------------------- /doctored/doctored.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holloway/doctored/HEAD/doctored/doctored.js -------------------------------------------------------------------------------- /doctored/js/app-backup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holloway/doctored/HEAD/doctored/js/app-backup.js -------------------------------------------------------------------------------- /doctored/js/app-linter-worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holloway/doctored/HEAD/doctored/js/app-linter-worker.js -------------------------------------------------------------------------------- /doctored/js/app-linters.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holloway/doctored/HEAD/doctored/js/app-linters.js -------------------------------------------------------------------------------- /doctored/js/app-schemas.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holloway/doctored/HEAD/doctored/js/app-schemas.js -------------------------------------------------------------------------------- /doctored/js/app-util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holloway/doctored/HEAD/doctored/js/app-util.js -------------------------------------------------------------------------------- /doctored/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holloway/doctored/HEAD/doctored/js/app.js -------------------------------------------------------------------------------- /doctored/js/shims.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holloway/doctored/HEAD/doctored/js/shims.js -------------------------------------------------------------------------------- /doctored/libs/filesaver.js/FileSaver.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holloway/doctored/HEAD/doctored/libs/filesaver.js/FileSaver.js -------------------------------------------------------------------------------- /doctored/libs/xml.js/licence: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holloway/doctored/HEAD/doctored/libs/xml.js/licence -------------------------------------------------------------------------------- /doctored/libs/xml.js/xmllint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holloway/doctored/HEAD/doctored/libs/xml.js/xmllint.js -------------------------------------------------------------------------------- /doctored/schemas/DITA/1.8/DITA Base.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holloway/doctored/HEAD/doctored/schemas/DITA/1.8/DITA Base.xsd -------------------------------------------------------------------------------- /doctored/schemas/DITA/1.8/DITA Bookmap.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holloway/doctored/HEAD/doctored/schemas/DITA/1.8/DITA Bookmap.xsd -------------------------------------------------------------------------------- /doctored/schemas/DITA/1.8/DITA Topic.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holloway/doctored/HEAD/doctored/schemas/DITA/1.8/DITA Topic.xsd -------------------------------------------------------------------------------- /doctored/schemas/DITA/1.8/config.json: -------------------------------------------------------------------------------- 1 | {"schema-family":"dita"} 2 | -------------------------------------------------------------------------------- /doctored/schemas/DocBook/DocBook 5.0.rng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holloway/doctored/HEAD/doctored/schemas/DocBook/DocBook 5.0.rng -------------------------------------------------------------------------------- /doctored/schemas/DocBook/config.json: -------------------------------------------------------------------------------- 1 | {"schema-family":"docbook"} 2 | -------------------------------------------------------------------------------- /doctored/schemas/MARC/MARC21.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holloway/doctored/HEAD/doctored/schemas/MARC/MARC21.xsd -------------------------------------------------------------------------------- /doctored/schemas/MARC/config.json: -------------------------------------------------------------------------------- 1 | {"schema-family":"marc"} 2 | -------------------------------------------------------------------------------- /doctored/schemas/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holloway/doctored/HEAD/doctored/schemas/README.md -------------------------------------------------------------------------------- /doctored/schemas/TEI/TEI 2.6.rng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holloway/doctored/HEAD/doctored/schemas/TEI/TEI 2.6.rng -------------------------------------------------------------------------------- /doctored/schemas/TEI/config.json: -------------------------------------------------------------------------------- 1 | {"schema-family":"tei"} 2 | -------------------------------------------------------------------------------- /doctored/schemas/TeXML/config.json: -------------------------------------------------------------------------------- 1 | {"schema-family":"texml"} 2 | -------------------------------------------------------------------------------- /doctored/schemas/TeXML/texml.rng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holloway/doctored/HEAD/doctored/schemas/TeXML/texml.rng -------------------------------------------------------------------------------- /doctored/schemas/phyloXML/config.json: -------------------------------------------------------------------------------- 1 | {"schema-family":"phyloxml"} 2 | -------------------------------------------------------------------------------- /doctored/schemas/phyloXML/phyloxml.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holloway/doctored/HEAD/doctored/schemas/phyloXML/phyloxml.xsd -------------------------------------------------------------------------------- /doctored/schemas/rebuild-schema-manifest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holloway/doctored/HEAD/doctored/schemas/rebuild-schema-manifest.js -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holloway/doctored/HEAD/index.html -------------------------------------------------------------------------------- /screen.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holloway/doctored/HEAD/screen.css -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holloway/doctored/HEAD/screenshot.png -------------------------------------------------------------------------------- /sync-ghpages.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holloway/doctored/HEAD/sync-ghpages.sh -------------------------------------------------------------------------------- /webserver.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holloway/doctored/HEAD/webserver.js --------------------------------------------------------------------------------