├── .gitignore ├── Contribute.md ├── Readme.md ├── __init__.py ├── devrequirements.txt ├── latex-commands-example.tex ├── mathjax_script_template ├── pelican_mathjax_markdown_extension.py ├── render_math.py └── test_math.py /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | -------------------------------------------------------------------------------- /Contribute.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barrysteyn/pelican_plugin-render_math/HEAD/Contribute.md -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barrysteyn/pelican_plugin-render_math/HEAD/Readme.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- 1 | from .render_math import * 2 | -------------------------------------------------------------------------------- /devrequirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barrysteyn/pelican_plugin-render_math/HEAD/devrequirements.txt -------------------------------------------------------------------------------- /latex-commands-example.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barrysteyn/pelican_plugin-render_math/HEAD/latex-commands-example.tex -------------------------------------------------------------------------------- /mathjax_script_template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barrysteyn/pelican_plugin-render_math/HEAD/mathjax_script_template -------------------------------------------------------------------------------- /pelican_mathjax_markdown_extension.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barrysteyn/pelican_plugin-render_math/HEAD/pelican_mathjax_markdown_extension.py -------------------------------------------------------------------------------- /render_math.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barrysteyn/pelican_plugin-render_math/HEAD/render_math.py -------------------------------------------------------------------------------- /test_math.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barrysteyn/pelican_plugin-render_math/HEAD/test_math.py --------------------------------------------------------------------------------