Add sphinx example configuration files
[doc.git] / examples / sphinx / istanbul / conf.py
1 from docs_conf.conf import *
2
3 branch = 'istanbul'
4 master_doc = 'index'
5
6 linkcheck_ignore = [
7     'http://localhost',
8 ]
9
10 exclude_patterns = [
11     '.tox'
12 ]
13
14 intersphinx_mapping = {}
15
16 html_last_updated_fmt = '%d-%b-%y %H:%M'
17
18 def setup(app):
19     app.add_css_file("css/ribbon.css")