-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconf.py
More file actions
36 lines (36 loc) · 1.01 KB
/
Copy pathconf.py
File metadata and controls
36 lines (36 loc) · 1.01 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
from recommonmark.parser import CommonMarkParser
#extensions = ['sphinx.ext.mathjax',
# 'sphinx.ext.githubpages']
templates_path = ['_templates']
source_suffix = ['.rst', '.md']
source_parsers = {
'.md': CommonMarkParser,
}
master_doc = 'index'
project = 'Tecnólogo em Sistemas para Internet'
copyright = '2018, IFRN'
author = 'IFRN'
version = '2012'
release = '2012'
language = 'pt_BR'
exclude_patterns = ['_build', 'Thumbs.db', '.DS_Store']
pygments_style = 'sphinx'
todo_include_todos = False
html_theme = 'sphinx_rtd_theme'
html_static_path = ['_static']
htmlhelp_basename = 'tsidoc'
latex_elements = {
}
latex_documents = [
(master_doc, 'tsi.tex', 'Tecnólogo em Sistemas para Internet',
'IFRN', 'manual'),
]
man_pages = [
(master_doc, 'tcnicointegradoeminformtica', 'Tecnólogo em Sistemas para Internet',
[author], 1)
]
texinfo_documents = [
(master_doc, 'tsi', 'Tecnólogo em Sistemas para Internet',
author, 'tsi', 'One line description of project.',
'Miscellaneous'),
]