• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1<%!
2    # Template configuration. Copy over in your template directory
3    # (used with --template-dir) and adapt as required.
4    html_lang = 'en'
5    show_inherited_members = True
6    extract_module_toc_into_sidebar = True
7    list_class_variables_in_index = True
8    sort_identifiers = True
9    show_type_annotations = False
10
11    # Show collapsed source code block next to each item.
12    # Disabling this can improve rendering speed of large modules.
13    show_source_code = False
14
15    # A prefix to use for every HTML hyperlink in the generated documentation.
16    # No prefix results in all links being relative.
17    link_prefix = ''
18
19    # Set the style keyword such as 'atom-one-light' or 'github-gist'
20    #     Options: https://github.com/highlightjs/highlight.js/tree/master/src/styles
21    #     Demo: https://highlightjs.org/static/demo/
22    hljs_style = 'github'
23
24    # If set, insert Google Analytics tracking code. Value is GA
25    # tracking id (UA-XXXXXX-Y).
26    google_analytics = ''
27
28    # If set, render LaTeX math syntax within \(...\) (inline equations),
29    # or within \[...\] or $$...$$ or `.. math::` (block equations)
30    # as nicely-formatted math formulas using MathJax.
31    # Note: in Python docstrings, either all backslashes need to be escaped (\\)
32    # or you need to use raw r-strings.
33    latex_math = True
34%>
35