recommonmark/tests/sphinx_nested_header_block/conf.py

23 lines
513 B
Python
Raw Normal View History

2016-10-27 01:17:06 -05:00
# -*- coding: utf-8 -*-
from recommonmark.parser import CommonMarkParser
templates_path = ['_templates']
source_suffix = '.md'
source_parsers = { '.md': CommonMarkParser }
master_doc = 'index'
project = u'sphinxproj'
copyright = u'2015, rtfd'
author = u'rtfd'
version = '0.1'
release = '0.1'
highlight_language = 'python'
language = None
exclude_patterns = ['_build']
pygments_style = 'sphinx'
todo_include_todos = False
html_theme = 'alabaster'
html_static_path = ['_static']
htmlhelp_basename = 'sphinxproj'