File: mkdocs.yml

package info (click to toggle)
python-multimethod 2.0-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 168 kB
  • sloc: python: 731; makefile: 13
file content (24 lines) | stat: -rw-r--r-- 507 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
site_name: multimethod
site_url: https://coady.github.io/multimethod/
site_description: Multiple argument dispatching.
theme: material

repo_name: coady/multimethod
repo_url: https://github.com/coady/multimethod
edit_uri: ""

nav:
  - Introduction: index.md
  - Reference: reference.md
  - Examples: examples.ipynb

plugins:
  - search
  - mkdocstrings:
      handlers:
        python:
          options:
            show_root_heading: true
  - mkdocs-jupyter:
      execute: true
      allow_errors: false