diff options
author | Vasudev Kamath <vasudev@copyninja.info> | 2018-07-22 20:14:57 +0530 |
---|---|---|
committer | Vasudev Kamath <vasudev@copyninja.info> | 2018-07-22 20:14:57 +0530 |
commit | 349cd9a196ac01eaeecaeae5ef5562a4513f72d4 (patch) | |
tree | f9fb5e67d64b21de3fdd4be1e26b5b71c6a89d1e | |
parent | b33f14f2bbec247fd5b76f92fd933cd19008e3c3 (diff) |
Enable mathjax rendering.
-rw-r--r-- | pelicanconf.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/pelicanconf.py b/pelicanconf.py index 47d1063..f8d5d25 100644 --- a/pelicanconf.py +++ b/pelicanconf.py @@ -53,9 +53,11 @@ SOCIAL = (('twitter', 'https://twitter.com/copyninja_'), STATIC_PATHS = ["images", ] +PLUGIN_PATH = ['../pelican-plugins'] PLUGINS = [ 'pelican_youtube', - 'minification' + 'minification', + 'render_math' ] # URL generation |