Skip to content
Snippets Groups Projects
Select Git revision
  • develop protected
  • master default protected
  • ti_lab_build
  • cross_platform
  • big_2017_api_change
  • VA_v2024a
  • VA_v2023b
  • VA_v2023a
  • before_VANet_update
  • VA_v2022a
  • before_cmake_rework
  • v2021.a
  • v2020.a
  • v2019.a
  • v2018.b
15 results

mkdocs.yml

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    mkdocs.yml 788 B
    site_name: VAPython
    
    theme:
      name: material
    
    extra_css:
    - css/custom.css
    
    nav:
      - Home: index.md
    
    plugins:
      - mkdocstrings:
          handlers: 
            python:
              paths: [src]
              options:
                docstring_options:
                  ignore_init_summary: true
                docstring_section_style: list
                filters: ["!^_"]
                inherited_members: true
                merge_init_into_class: true
                separate_signature: true
                show_root_heading: true
                show_root_full_path: false
                show_signature_annotations: true
                show_source: false
                show_symbol_type_heading: true
                show_symbol_type_toc: true
                signature_crossrefs: true
                summary: true
                unwrap_annotated: true