File tree 1 file changed +3
-34
lines changed
tests/test_common_mark/source/docs 1 file changed +3
-34
lines changed Original file line number Diff line number Diff line change 1
- #!/usr/bin/env python3
2
-
3
1
from recommonmark .transform import AutoStructify
4
2
from recommonmark .parser import CommonMarkParser
5
3
6
- author = 'Jam Risser'
7
-
8
- copyright = '2018, Jam Risser'
9
-
10
- exclude_patterns = ['_build' , 'Thumbs.db' , '.DS_Store' ]
11
4
12
5
extensions = [
13
6
'sphinx.ext.mathjax' ,
14
7
'sphinx_js'
15
8
]
16
9
17
- html_static_path = ['_static' ]
18
-
19
- html_theme = 'sphinx_rtd_theme'
20
-
21
- htmlhelp_basename = 'sphinx_hello_worlddoc'
22
-
23
- language = None
24
-
10
+ source_suffix = ['.rst' , '.md' ]
25
11
master_doc = 'index'
26
-
27
- needs_sphinx = '1.0'
28
-
29
- #primary_domain = 'js'
30
-
31
- project = 'sphinx-hello-world'
32
-
33
- pygments_style = 'sphinx'
34
-
35
- release = '0.0.1'
36
-
12
+ author = 'Jam Risser'
13
+ exclude_patterns = ['_build' , 'Thumbs.db' , '.DS_Store' ]
37
14
source_parsers = {
38
15
'.md' : CommonMarkParser
39
16
}
40
17
41
- source_suffix = ['.rst' , '.md' ]
42
-
43
- templates_path = ['_templates' ]
44
-
45
- todo_include_todos = False
46
-
47
- version = '0.0.1'
48
-
49
18
def setup (app ):
50
19
app .add_config_value ('recommonmark_config' , {
51
20
'auto_toc_tree_section' : 'Content' ,
You can’t perform that action at this time.
0 commit comments