├── .gitignore ├── AUTHORS ├── ChangeLog ├── DEVELOPERS.md ├── LICENSE ├── MANIFEST.in ├── README.md ├── pandocxnos ├── README.md ├── __init__.py ├── core.py ├── main.py └── pandocattributes.py ├── setup.py └── test ├── integration ├── Makefile ├── demo.md └── fig.png └── test.py /.gitignore: -------------------------------------------------------------------------------- 1 | build 2 | dist 3 | *.egg-info 4 | test/integration/out/* -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomduck/pandoc-xnos/HEAD/AUTHORS -------------------------------------------------------------------------------- /ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomduck/pandoc-xnos/HEAD/ChangeLog -------------------------------------------------------------------------------- /DEVELOPERS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomduck/pandoc-xnos/HEAD/DEVELOPERS.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomduck/pandoc-xnos/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomduck/pandoc-xnos/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomduck/pandoc-xnos/HEAD/README.md -------------------------------------------------------------------------------- /pandocxnos/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomduck/pandoc-xnos/HEAD/pandocxnos/README.md -------------------------------------------------------------------------------- /pandocxnos/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomduck/pandoc-xnos/HEAD/pandocxnos/__init__.py -------------------------------------------------------------------------------- /pandocxnos/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomduck/pandoc-xnos/HEAD/pandocxnos/core.py -------------------------------------------------------------------------------- /pandocxnos/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomduck/pandoc-xnos/HEAD/pandocxnos/main.py -------------------------------------------------------------------------------- /pandocxnos/pandocattributes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomduck/pandoc-xnos/HEAD/pandocxnos/pandocattributes.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomduck/pandoc-xnos/HEAD/setup.py -------------------------------------------------------------------------------- /test/integration/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomduck/pandoc-xnos/HEAD/test/integration/Makefile -------------------------------------------------------------------------------- /test/integration/demo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomduck/pandoc-xnos/HEAD/test/integration/demo.md -------------------------------------------------------------------------------- /test/integration/fig.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomduck/pandoc-xnos/HEAD/test/integration/fig.png -------------------------------------------------------------------------------- /test/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomduck/pandoc-xnos/HEAD/test/test.py --------------------------------------------------------------------------------