├── .gitignore ├── LICENSE ├── README.md ├── circle.yml ├── dev_requirements.txt ├── docs ├── index.md ├── markdown.md ├── renderer.md └── utils.md ├── mkdocs.yml ├── requirements.in ├── requirements.txt ├── rest_framework_latex ├── __init__.py ├── markdown.py ├── renderers.py ├── templatetags │ ├── __init__.py │ └── rest_framework_latex.py └── utils.py ├── setup.cfg ├── setup.py └── tests ├── manage.py └── tests ├── __init__.py ├── admin.py ├── apps.py ├── models.py ├── settings.py ├── testrenderers ├── __init__.py ├── admin.py ├── apps.py ├── migrations │ └── __init__.py ├── models.py ├── tests │ ├── __init__.py │ ├── test_callback.py │ ├── test_latex.py │ └── test_markdown.py └── views.py ├── tests.py ├── testtemplatetags ├── __init__.py ├── admin.py ├── apps.py ├── migrations │ └── __init__.py ├── models.py ├── tests.py └── views.py ├── urls.py ├── views.py └── wsgi.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mypebble/rest-framework-latex/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mypebble/rest-framework-latex/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mypebble/rest-framework-latex/HEAD/README.md -------------------------------------------------------------------------------- /circle.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mypebble/rest-framework-latex/HEAD/circle.yml -------------------------------------------------------------------------------- /dev_requirements.txt: -------------------------------------------------------------------------------- 1 | commonmark==0.6.4 2 | mock -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mypebble/rest-framework-latex/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/markdown.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mypebble/rest-framework-latex/HEAD/docs/markdown.md -------------------------------------------------------------------------------- /docs/renderer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mypebble/rest-framework-latex/HEAD/docs/renderer.md -------------------------------------------------------------------------------- /docs/utils.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mypebble/rest-framework-latex/HEAD/docs/utils.md -------------------------------------------------------------------------------- /mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mypebble/rest-framework-latex/HEAD/mkdocs.yml -------------------------------------------------------------------------------- /requirements.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mypebble/rest-framework-latex/HEAD/requirements.in -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mypebble/rest-framework-latex/HEAD/requirements.txt -------------------------------------------------------------------------------- /rest_framework_latex/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rest_framework_latex/markdown.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mypebble/rest-framework-latex/HEAD/rest_framework_latex/markdown.py -------------------------------------------------------------------------------- /rest_framework_latex/renderers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mypebble/rest-framework-latex/HEAD/rest_framework_latex/renderers.py -------------------------------------------------------------------------------- /rest_framework_latex/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rest_framework_latex/templatetags/rest_framework_latex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mypebble/rest-framework-latex/HEAD/rest_framework_latex/templatetags/rest_framework_latex.py -------------------------------------------------------------------------------- /rest_framework_latex/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mypebble/rest-framework-latex/HEAD/rest_framework_latex/utils.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [metadata] 2 | description-file = README.md 3 | 4 | [bdist_wheel] 5 | universal = 1 -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mypebble/rest-framework-latex/HEAD/setup.py -------------------------------------------------------------------------------- /tests/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mypebble/rest-framework-latex/HEAD/tests/manage.py -------------------------------------------------------------------------------- /tests/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tests/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mypebble/rest-framework-latex/HEAD/tests/tests/admin.py -------------------------------------------------------------------------------- /tests/tests/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mypebble/rest-framework-latex/HEAD/tests/tests/apps.py -------------------------------------------------------------------------------- /tests/tests/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mypebble/rest-framework-latex/HEAD/tests/tests/models.py -------------------------------------------------------------------------------- /tests/tests/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mypebble/rest-framework-latex/HEAD/tests/tests/settings.py -------------------------------------------------------------------------------- /tests/tests/testrenderers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tests/testrenderers/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mypebble/rest-framework-latex/HEAD/tests/tests/testrenderers/admin.py -------------------------------------------------------------------------------- /tests/tests/testrenderers/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mypebble/rest-framework-latex/HEAD/tests/tests/testrenderers/apps.py -------------------------------------------------------------------------------- /tests/tests/testrenderers/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tests/testrenderers/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mypebble/rest-framework-latex/HEAD/tests/tests/testrenderers/models.py -------------------------------------------------------------------------------- /tests/tests/testrenderers/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tests/testrenderers/tests/test_callback.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mypebble/rest-framework-latex/HEAD/tests/tests/testrenderers/tests/test_callback.py -------------------------------------------------------------------------------- /tests/tests/testrenderers/tests/test_latex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mypebble/rest-framework-latex/HEAD/tests/tests/testrenderers/tests/test_latex.py -------------------------------------------------------------------------------- /tests/tests/testrenderers/tests/test_markdown.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mypebble/rest-framework-latex/HEAD/tests/tests/testrenderers/tests/test_markdown.py -------------------------------------------------------------------------------- /tests/tests/testrenderers/views.py: -------------------------------------------------------------------------------- 1 | from django.shortcuts import render 2 | 3 | # Create your views here. 4 | -------------------------------------------------------------------------------- /tests/tests/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mypebble/rest-framework-latex/HEAD/tests/tests/tests.py -------------------------------------------------------------------------------- /tests/tests/testtemplatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tests/testtemplatetags/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mypebble/rest-framework-latex/HEAD/tests/tests/testtemplatetags/admin.py -------------------------------------------------------------------------------- /tests/tests/testtemplatetags/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mypebble/rest-framework-latex/HEAD/tests/tests/testtemplatetags/apps.py -------------------------------------------------------------------------------- /tests/tests/testtemplatetags/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tests/testtemplatetags/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mypebble/rest-framework-latex/HEAD/tests/tests/testtemplatetags/models.py -------------------------------------------------------------------------------- /tests/tests/testtemplatetags/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mypebble/rest-framework-latex/HEAD/tests/tests/testtemplatetags/tests.py -------------------------------------------------------------------------------- /tests/tests/testtemplatetags/views.py: -------------------------------------------------------------------------------- 1 | from django.shortcuts import render 2 | 3 | # Create your views here. 4 | -------------------------------------------------------------------------------- /tests/tests/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mypebble/rest-framework-latex/HEAD/tests/tests/urls.py -------------------------------------------------------------------------------- /tests/tests/views.py: -------------------------------------------------------------------------------- 1 | from django.shortcuts import render 2 | 3 | # Create your views here. 4 | -------------------------------------------------------------------------------- /tests/tests/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mypebble/rest-framework-latex/HEAD/tests/tests/wsgi.py --------------------------------------------------------------------------------