From f19f8ed67546da5cb9d67f0793d036d64fe916eb Mon Sep 17 00:00:00 2001 From: ovainola Date: Mon, 22 Jun 2015 07:39:34 +0300 Subject: [PATCH] Update doc.conf.py Adding more extensions --- docs/doc.conf.py | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/docs/doc.conf.py b/docs/doc.conf.py index 3eff946..9eb45cc 100644 --- a/docs/doc.conf.py +++ b/docs/doc.conf.py @@ -1,5 +1,15 @@ +import os +import sys +import re + import juliadoc -extensions = ['juliadoc.julia', 'juliadoc.jlhelp'] +extensions = ['sphinx.ext.mathjax', + 'juliadoc.julia', + 'juliadoc.jldoctest', + 'juliadoc.jlhelp'] + +master_doc = 'index' + html_theme_path = [juliadoc.get_theme_dir()] html_sidebars = juliadoc.default_sidebars()