|
19 | 19 | # See the License for the specific language governing permissions and |
20 | 20 | # limitations under the License. |
21 | 21 |
|
| 22 | +# Directives for doing spell check only for python comments |
| 23 | +# cSpell:includeRegExp #.* |
| 24 | +# cSpell:includeRegExp ("""|''')[^]* |
| 25 | + |
22 | 26 | # This file is execfile()d with the current directory set to its |
23 | 27 | # containing dir. |
24 | 28 | # |
|
40 | 44 | sys.path.append(os.path.abspath('../python/')) |
41 | 45 | sys.path.append(os.path.abspath('../build/python/')) |
42 | 46 |
|
43 | | - |
44 | 47 | # -- General configuration ------------------------------------------------ |
45 | 48 | from recommonmark.parser import CommonMarkParser |
46 | 49 |
|
|
71 | 74 | # source_encoding = 'utf-8-sig' |
72 | 75 |
|
73 | 76 | # The master toctree document. |
74 | | -master_doc = 'index' |
| 77 | +master_doc = 'en/index' |
75 | 78 |
|
76 | 79 | # General information about the project. |
77 | 80 | project = u'incubator-singa' |
|
139 | 142 | # If true, `todo` and `todoList` produce output, else they produce nothing. |
140 | 143 | todo_include_todos = False |
141 | 144 |
|
142 | | - |
143 | 145 | # -- Options for HTML output ---------------------------------------------- |
144 | 146 |
|
145 | 147 | # The theme to use for HTML and HTML Help pages. See the documentation for |
|
168 | 170 | # The name of an image file (relative to this directory) to place at the top |
169 | 171 | # of the sidebar. |
170 | 172 | # |
171 | | -html_logo = '/singa.png' |
| 173 | +html_logo = '_static/singa.png' |
172 | 174 |
|
173 | 175 | # The name of an image file (relative to this directory) to use as a favicon of |
174 | 176 | # the docs. This file should be a Windows icon file (.ico) being 16x16 or 32x32 |
|
264 | 266 | # -- Options for LaTeX output --------------------------------------------- |
265 | 267 |
|
266 | 268 | latex_elements = { |
267 | | - # The paper size ('letterpaper' or 'a4paper'). |
268 | | - # |
269 | | - # 'papersize': 'letterpaper', |
| 269 | + # The paper size ('letterpaper' or 'a4paper'). |
| 270 | + # |
| 271 | + # 'papersize': 'letterpaper', |
270 | 272 |
|
271 | | - # The font size ('10pt', '11pt' or '12pt'). |
272 | | - # |
273 | | - # 'pointsize': '10pt', |
| 273 | + # The font size ('10pt', '11pt' or '12pt'). |
| 274 | + # |
| 275 | + # 'pointsize': '10pt', |
274 | 276 |
|
275 | | - # Additional stuff for the LaTeX preamble. |
276 | | - # |
277 | | - # 'preamble': '', |
| 277 | + # Additional stuff for the LaTeX preamble. |
| 278 | + # |
| 279 | + # 'preamble': '', |
278 | 280 |
|
279 | | - # Latex figure (float) alignment |
280 | | - # |
281 | | - # 'figure_align': 'htbp', |
| 281 | + # Latex figure (float) alignment |
| 282 | + # |
| 283 | + # 'figure_align': 'htbp', |
282 | 284 | } |
283 | 285 |
|
284 | 286 | # Grouping the document tree into LaTeX files. List of tuples |
|
315 | 317 | # |
316 | 318 | # latex_domain_indices = True |
317 | 319 |
|
318 | | - |
319 | 320 | # -- Options for manual page output --------------------------------------- |
320 | 321 |
|
321 | 322 | # One entry per manual page. List of tuples |
322 | 323 | # (source start file, name, description, authors, manual section). |
323 | | -man_pages = [ |
324 | | - (master_doc, 'incubator-singa', u'incubator-singa Documentation', |
325 | | - [author], 1) |
326 | | -] |
| 324 | +man_pages = [(master_doc, 'incubator-singa', u'incubator-singa Documentation', |
| 325 | + [author], 1)] |
327 | 326 |
|
328 | 327 | # If true, show URL addresses after external links. |
329 | 328 | # |
330 | 329 | # man_show_urls = False |
331 | 330 |
|
332 | | - |
333 | 331 | # -- Options for Texinfo output ------------------------------------------- |
334 | 332 |
|
335 | 333 | # Grouping the document tree into Texinfo files. List of tuples |
336 | 334 | # (source start file, target name, title, author, |
337 | 335 | # dir menu entry, description, category) |
338 | 336 | texinfo_documents = [ |
339 | | - (master_doc, 'incubator-singa', u'incubator-singa Documentation', |
340 | | - author, 'incubator-singa', 'One line description of project.', |
341 | | - 'Miscellaneous'), |
| 337 | + (master_doc, 'incubator-singa', u'incubator-singa Documentation', author, |
| 338 | + 'incubator-singa', 'One line description of project.', 'Miscellaneous'), |
342 | 339 | ] |
343 | 340 |
|
344 | 341 | # Documents to append as an appendix to all manuals. |
|
0 commit comments