├── .gitignore ├── LICENSE.md ├── README.md ├── coredocs ├── __init__.py ├── highlighting.py ├── main.py ├── render_markdown.py ├── themes │ ├── base │ │ └── templates │ │ │ ├── document.html │ │ │ ├── languages │ │ │ ├── javascript.html │ │ │ ├── python.html │ │ │ └── shell.html │ │ │ ├── link.html │ │ │ └── section.html │ ├── cerulean │ │ ├── static │ │ │ ├── css │ │ │ │ ├── base.css │ │ │ │ ├── bootstrap-custom.min.css │ │ │ │ ├── font-awesome-4.0.3.css │ │ │ │ └── highlight.css │ │ │ ├── fonts │ │ │ │ ├── fontawesome-webfont.eot │ │ │ │ ├── fontawesome-webfont.svg │ │ │ │ ├── fontawesome-webfont.ttf │ │ │ │ └── fontawesome-webfont.woff │ │ │ ├── img │ │ │ │ ├── favicon.ico │ │ │ │ └── grid.png │ │ │ └── js │ │ │ │ ├── base.js │ │ │ │ ├── bootstrap-3.0.3.min.js │ │ │ │ ├── highlight.pack.js │ │ │ │ └── jquery-1.10.2.min.js │ │ └── templates │ │ │ ├── 404.html │ │ │ ├── document.html │ │ │ ├── index.html │ │ │ ├── inputs │ │ │ ├── checkbox.html │ │ │ ├── input.html │ │ │ ├── select.html │ │ │ └── textarea.html │ │ │ ├── link.html │ │ │ ├── nav.html │ │ │ └── toc.html │ └── slate │ │ ├── static │ │ ├── fonts │ │ │ ├── slate.eot │ │ │ ├── slate.svg │ │ │ ├── slate.ttf │ │ │ ├── slate.woff │ │ │ └── slate.woff2 │ │ ├── images │ │ │ ├── logo.png │ │ │ └── navbar.png │ │ ├── javascripts │ │ │ ├── all.js │ │ │ └── all_nosearch.js │ │ └── stylesheets │ │ │ ├── print.css │ │ │ └── screen.css │ │ └── templates │ │ └── index.html └── utils.py ├── requirements.txt ├── screenshots ├── raml.png └── swagger.png ├── setup.py └── theme-licenses └── slate.md /.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | /dist 3 | /env 4 | *.egg-info 5 | *.pyc 6 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-api/coredocs/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-api/coredocs/HEAD/README.md -------------------------------------------------------------------------------- /coredocs/__init__.py: -------------------------------------------------------------------------------- 1 | __version__ = '0.0.6' 2 | -------------------------------------------------------------------------------- /coredocs/highlighting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-api/coredocs/HEAD/coredocs/highlighting.py -------------------------------------------------------------------------------- /coredocs/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-api/coredocs/HEAD/coredocs/main.py -------------------------------------------------------------------------------- /coredocs/render_markdown.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-api/coredocs/HEAD/coredocs/render_markdown.py -------------------------------------------------------------------------------- /coredocs/themes/base/templates/document.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-api/coredocs/HEAD/coredocs/themes/base/templates/document.html -------------------------------------------------------------------------------- /coredocs/themes/base/templates/languages/javascript.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-api/coredocs/HEAD/coredocs/themes/base/templates/languages/javascript.html -------------------------------------------------------------------------------- /coredocs/themes/base/templates/languages/python.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-api/coredocs/HEAD/coredocs/themes/base/templates/languages/python.html -------------------------------------------------------------------------------- /coredocs/themes/base/templates/languages/shell.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-api/coredocs/HEAD/coredocs/themes/base/templates/languages/shell.html -------------------------------------------------------------------------------- /coredocs/themes/base/templates/link.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-api/coredocs/HEAD/coredocs/themes/base/templates/link.html -------------------------------------------------------------------------------- /coredocs/themes/base/templates/section.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-api/coredocs/HEAD/coredocs/themes/base/templates/section.html -------------------------------------------------------------------------------- /coredocs/themes/cerulean/static/css/base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-api/coredocs/HEAD/coredocs/themes/cerulean/static/css/base.css -------------------------------------------------------------------------------- /coredocs/themes/cerulean/static/css/bootstrap-custom.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-api/coredocs/HEAD/coredocs/themes/cerulean/static/css/bootstrap-custom.min.css -------------------------------------------------------------------------------- /coredocs/themes/cerulean/static/css/font-awesome-4.0.3.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-api/coredocs/HEAD/coredocs/themes/cerulean/static/css/font-awesome-4.0.3.css -------------------------------------------------------------------------------- /coredocs/themes/cerulean/static/css/highlight.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-api/coredocs/HEAD/coredocs/themes/cerulean/static/css/highlight.css -------------------------------------------------------------------------------- /coredocs/themes/cerulean/static/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-api/coredocs/HEAD/coredocs/themes/cerulean/static/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /coredocs/themes/cerulean/static/fonts/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-api/coredocs/HEAD/coredocs/themes/cerulean/static/fonts/fontawesome-webfont.svg -------------------------------------------------------------------------------- /coredocs/themes/cerulean/static/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-api/coredocs/HEAD/coredocs/themes/cerulean/static/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /coredocs/themes/cerulean/static/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-api/coredocs/HEAD/coredocs/themes/cerulean/static/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /coredocs/themes/cerulean/static/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-api/coredocs/HEAD/coredocs/themes/cerulean/static/img/favicon.ico -------------------------------------------------------------------------------- /coredocs/themes/cerulean/static/img/grid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-api/coredocs/HEAD/coredocs/themes/cerulean/static/img/grid.png -------------------------------------------------------------------------------- /coredocs/themes/cerulean/static/js/base.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-api/coredocs/HEAD/coredocs/themes/cerulean/static/js/base.js -------------------------------------------------------------------------------- /coredocs/themes/cerulean/static/js/bootstrap-3.0.3.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-api/coredocs/HEAD/coredocs/themes/cerulean/static/js/bootstrap-3.0.3.min.js -------------------------------------------------------------------------------- /coredocs/themes/cerulean/static/js/highlight.pack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-api/coredocs/HEAD/coredocs/themes/cerulean/static/js/highlight.pack.js -------------------------------------------------------------------------------- /coredocs/themes/cerulean/static/js/jquery-1.10.2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-api/coredocs/HEAD/coredocs/themes/cerulean/static/js/jquery-1.10.2.min.js -------------------------------------------------------------------------------- /coredocs/themes/cerulean/templates/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-api/coredocs/HEAD/coredocs/themes/cerulean/templates/404.html -------------------------------------------------------------------------------- /coredocs/themes/cerulean/templates/document.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-api/coredocs/HEAD/coredocs/themes/cerulean/templates/document.html -------------------------------------------------------------------------------- /coredocs/themes/cerulean/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-api/coredocs/HEAD/coredocs/themes/cerulean/templates/index.html -------------------------------------------------------------------------------- /coredocs/themes/cerulean/templates/inputs/checkbox.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-api/coredocs/HEAD/coredocs/themes/cerulean/templates/inputs/checkbox.html -------------------------------------------------------------------------------- /coredocs/themes/cerulean/templates/inputs/input.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-api/coredocs/HEAD/coredocs/themes/cerulean/templates/inputs/input.html -------------------------------------------------------------------------------- /coredocs/themes/cerulean/templates/inputs/select.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-api/coredocs/HEAD/coredocs/themes/cerulean/templates/inputs/select.html -------------------------------------------------------------------------------- /coredocs/themes/cerulean/templates/inputs/textarea.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-api/coredocs/HEAD/coredocs/themes/cerulean/templates/inputs/textarea.html -------------------------------------------------------------------------------- /coredocs/themes/cerulean/templates/link.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-api/coredocs/HEAD/coredocs/themes/cerulean/templates/link.html -------------------------------------------------------------------------------- /coredocs/themes/cerulean/templates/nav.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-api/coredocs/HEAD/coredocs/themes/cerulean/templates/nav.html -------------------------------------------------------------------------------- /coredocs/themes/cerulean/templates/toc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-api/coredocs/HEAD/coredocs/themes/cerulean/templates/toc.html -------------------------------------------------------------------------------- /coredocs/themes/slate/static/fonts/slate.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-api/coredocs/HEAD/coredocs/themes/slate/static/fonts/slate.eot -------------------------------------------------------------------------------- /coredocs/themes/slate/static/fonts/slate.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-api/coredocs/HEAD/coredocs/themes/slate/static/fonts/slate.svg -------------------------------------------------------------------------------- /coredocs/themes/slate/static/fonts/slate.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-api/coredocs/HEAD/coredocs/themes/slate/static/fonts/slate.ttf -------------------------------------------------------------------------------- /coredocs/themes/slate/static/fonts/slate.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-api/coredocs/HEAD/coredocs/themes/slate/static/fonts/slate.woff -------------------------------------------------------------------------------- /coredocs/themes/slate/static/fonts/slate.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-api/coredocs/HEAD/coredocs/themes/slate/static/fonts/slate.woff2 -------------------------------------------------------------------------------- /coredocs/themes/slate/static/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-api/coredocs/HEAD/coredocs/themes/slate/static/images/logo.png -------------------------------------------------------------------------------- /coredocs/themes/slate/static/images/navbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-api/coredocs/HEAD/coredocs/themes/slate/static/images/navbar.png -------------------------------------------------------------------------------- /coredocs/themes/slate/static/javascripts/all.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-api/coredocs/HEAD/coredocs/themes/slate/static/javascripts/all.js -------------------------------------------------------------------------------- /coredocs/themes/slate/static/javascripts/all_nosearch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-api/coredocs/HEAD/coredocs/themes/slate/static/javascripts/all_nosearch.js -------------------------------------------------------------------------------- /coredocs/themes/slate/static/stylesheets/print.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-api/coredocs/HEAD/coredocs/themes/slate/static/stylesheets/print.css -------------------------------------------------------------------------------- /coredocs/themes/slate/static/stylesheets/screen.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-api/coredocs/HEAD/coredocs/themes/slate/static/stylesheets/screen.css -------------------------------------------------------------------------------- /coredocs/themes/slate/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-api/coredocs/HEAD/coredocs/themes/slate/templates/index.html -------------------------------------------------------------------------------- /coredocs/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-api/coredocs/HEAD/coredocs/utils.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-api/coredocs/HEAD/requirements.txt -------------------------------------------------------------------------------- /screenshots/raml.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-api/coredocs/HEAD/screenshots/raml.png -------------------------------------------------------------------------------- /screenshots/swagger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-api/coredocs/HEAD/screenshots/swagger.png -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-api/coredocs/HEAD/setup.py -------------------------------------------------------------------------------- /theme-licenses/slate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-api/coredocs/HEAD/theme-licenses/slate.md --------------------------------------------------------------------------------