├── .gitignore ├── .travis.yml ├── LICENSE.md ├── Makefile ├── README.md ├── plotto-original-corrected.xml └── plotto.rnc /.gitignore: -------------------------------------------------------------------------------- 1 | *.rng 2 | pip-selfcheck.json 3 | bin/ 4 | lib/ 5 | share/ 6 | include/ 7 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eykd/plottoxml/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eykd/plottoxml/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eykd/plottoxml/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eykd/plottoxml/HEAD/README.md -------------------------------------------------------------------------------- /plotto-original-corrected.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eykd/plottoxml/HEAD/plotto-original-corrected.xml -------------------------------------------------------------------------------- /plotto.rnc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eykd/plottoxml/HEAD/plotto.rnc --------------------------------------------------------------------------------