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 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76
|
site_name: "TEST2REF"
site_description: "Testing Against Learned Reference Data"
site_url: https://test2ref.readthedocs.io/en
repo_url: https://github.com/nbiotcloud/test2ref
copyright: Copyright (c) 2024-2025 nbiotcloud
theme:
name: material
palette:
- media: "(prefes-color-scheme: light)"
scheme: default
toggle:
icon: material/brightness-7
name: Switch to dark mode
- media: "(prefes-color-scheme: dark)"
scheme: slate
toggle:
icon: material/brightness-4
name: Switch to light mode
features:
- navigation.footer
- navigation.tabs
- navigation.tabs.sticky
- content.code.copy
- content.code.select
- content.code.annotate
nav:
- Get Started:
- Welcome to TEST2REF: index.md
- Contributing: contributing.md
plugins:
- search
- include-markdown
- literate-nav:
nav_file: README.md
implicit_index: true
- mkdocstrings:
default_handler: python
handlers:
python:
options:
docstring_options:
ignore_init_summary: true
summary: true
show_source: false
unwrap_annotated: true
members_order: source
show_docstring_parameters: true
show_docstring_other_parameters: true
separate_signature: true
signature_crossrefs: true
show_signature_annotations: false
show_symbol_type_heading: true
# preload_modules: [pydantic]
inherited_members: false
import:
- https://docs.python.org/3/objects.inv
markdown_extensions:
- admonition
- pymdownx.details
- attr_list
- mkdocs-click
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences
watch:
- src
- CONTRIBUTING.md
|