Diff of /docs/mkdocs.yml [000000] .. [b9e282]

Switch to unified view

a b/docs/mkdocs.yml
1
site_name: BioNeMo Framework
2
site_url: https://nvidia.github.io/bionemo-framework
3
repo_url: https://github.com/NVIDIA/bionemo-framework
4
repo_name: NVIDIA/bionemo-framework
5
6
theme:
7
  name: "material"
8
  custom_dir: overrides
9
  features:
10
    - content.code.annotate
11
    - navigation.tabs
12
    - navigation.indexes
13
    - navigation.instant
14
    - navigation.path
15
    - navigation.instant.prefetch
16
    - navigation.top
17
    - navigation.footer
18
    - search.suggest
19
    - search.highlight
20
    - content.code.copy
21
  font:
22
    code: Roboto Mono
23
  favicon: assets/images/favicon.png
24
  language: en
25
  palette:
26
    - media: "(prefers-color-scheme: light)"
27
      scheme: light
28
      primary: custom
29
      accent: lime
30
      toggle:
31
        icon: material/weather-night
32
        name: Switch to dark mode
33
    - media: "(prefers-color-scheme: dark)"
34
      scheme: dark
35
      primary: custom
36
      accent: lime
37
      toggle:
38
        icon: material/weather-sunny
39
        name: Switch to light mode
40
  icon:
41
    logo: nvidia/nvidia-logo
42
    repo: fontawesome/brands/github
43
44
extra_css:
45
  - assets/css/color-schemes.css
46
  - assets/css/fonts.css
47
  - assets/css/custom-material.css
48
  - assets/css/jupyter-themes.css
49
50
plugins:
51
  - search
52
  - gen-files:
53
      scripts:
54
        - scripts/gen_ref_pages.py
55
  - macros
56
  - mike:
57
      # These fields are all optional; the defaults are as below...
58
      alias_type: copy
59
      redirect_template: null
60
      deploy_prefix: ""
61
      canonical_version: "latest"
62
      version_selector: true
63
      css_dir: "assets/css"
64
      javascript_dir: "assets/js"
65
  - mkdocstrings:
66
      handlers:
67
        python:
68
          paths:
69
            - ../sub-packages/*/src
70
  - mkdocs-jupyter:
71
      theme: auto
72
      highlight_extra_classes: "jupyter-notebook"
73
      remove_tag_config:
74
        remove_input_tags:
75
            - hide-code
76
            - hide_code
77
            - hide-input
78
            - hide_input
79
            - remove_input
80
            - remove-input
81
        remove_cell_tags:
82
            - hide-cell
83
            - hide_cell
84
            - remove-cell
85
            - remove_cell
86
        remove_all_outputs_tags:
87
            - hide-output
88
            - hide_output
89
            - remove-output
90
            - remove_output
91
  - include_dir_to_nav:
92
      file_pattern: '.*\.(md|ipynb)$'
93
  - literate-nav:
94
      nav_file: SUMMARY.md
95
  - site-urls
96
97
markdown_extensions:
98
  - attr_list
99
  - md_in_html
100
  - pymdownx.details
101
  - pymdownx.superfences
102
  - pymdownx.snippets:
103
      check_paths: true
104
      restrict_base_path: False
105
      base_path: "."
106
  - pymdownx.emoji:
107
      emoji_index: !!python/name:material.extensions.emoji.twemoji
108
      emoji_generator: !!python/name:material.extensions.emoji.to_svg
109
      options:
110
        custom_icons:
111
          - overrides/.icons
112
  - pymdownx.tabbed:
113
      alternate_style: true
114
  - def_list
115
  - admonition
116
  - footnotes
117
118
extra:
119
  social:
120
    - icon: fontawesome/brands/github
121
      link: https://github.com/NVIDIA/bionemo-framework
122
  version:
123
    provider: mike
124
    default: latest
125
    alias: true
126
  docker_url: nvcr.io/nvidia/clara/bionemo-framework
127
  docker_tag: nightly
128
  github_url: https://github.com/NVIDIA/bionemo-framework
129
130
copyright: |
131
  © Copyright 2023-2024 NVIDIA CORPORATION & AFFILIATES. All rights reserved.