|
| 1 | +site_name: Your Package Name |
| 2 | +site_description: Your package description |
| 3 | +strict: true |
| 4 | +site_url: https://python_template.zhuhao.me |
| 5 | +repo_url: https://github.com/ProKil/python_project_template |
| 6 | +repo_name: Python Project Template |
| 7 | + |
| 8 | +theme: |
| 9 | + name: "material" |
| 10 | + icon: |
| 11 | + repo: fontawesome/brands/github |
| 12 | + palette: |
| 13 | + - media: "(prefers-color-scheme)" |
| 14 | + scheme: default |
| 15 | + primary: deep purple |
| 16 | + accent: amber |
| 17 | + toggle: |
| 18 | + icon: material/lightbulb |
| 19 | + name: "Switch to light mode" |
| 20 | + - media: "(prefers-color-scheme: light)" |
| 21 | + scheme: default |
| 22 | + primary: deep purple |
| 23 | + accent: amber |
| 24 | + toggle: |
| 25 | + icon: material/lightbulb-outline |
| 26 | + name: "Switch to dark mode" |
| 27 | + - media: "(prefers-color-scheme: dark)" |
| 28 | + scheme: slate |
| 29 | + primary: deep purple |
| 30 | + accent: amber |
| 31 | + toggle: |
| 32 | + icon: material/lightbulb-auto-outline |
| 33 | + name: "Switch to system preference" |
| 34 | + features: |
| 35 | + - content.tabs.link |
| 36 | + - content.code.annotate |
| 37 | + - content.code.copy |
| 38 | + - announce.dismiss |
| 39 | + - navigation.tabs |
| 40 | + - navigation.instant |
| 41 | + - navigation.instant.prefetch |
| 42 | + - navigation.instant.preview |
| 43 | + - navigation.instant.progress |
| 44 | + - navigation.path |
| 45 | + - navigation.sections |
| 46 | + - navigation.top |
| 47 | + - navigation.tracking |
| 48 | + - search.suggest |
| 49 | + - toc.follow |
| 50 | + |
| 51 | +extra: |
| 52 | + version: |
| 53 | + provider: mike |
| 54 | + analytics: |
| 55 | + feedback: |
| 56 | + title: Was this page helpful? |
| 57 | + ratings: |
| 58 | + - icon: material/thumb-up-outline |
| 59 | + name: This page was helpful |
| 60 | + data: 1 |
| 61 | + note: >- |
| 62 | + Thanks for your feedback! |
| 63 | + - icon: material/thumb-down-outline |
| 64 | + name: This page could be improved |
| 65 | + data: 0 |
| 66 | + note: >- |
| 67 | + Thanks for your feedback! |
| 68 | +nav: |
| 69 | +- Get Started: |
| 70 | + - What is this: index.md |
| 71 | + |
| 72 | +plugins: |
| 73 | +- social |
| 74 | +- search |
| 75 | +- mike: |
| 76 | + alias_type: symlink |
| 77 | + canonical_version: latest |
| 78 | +- exclude: |
| 79 | + glob: |
| 80 | + - theme/announce.html |
| 81 | + - plugins/* |
| 82 | + - __pycache__/* |
| 83 | +- mkdocstrings: |
| 84 | + handlers: |
| 85 | + python: |
| 86 | + paths: [.] |
| 87 | + options: |
| 88 | + members_order: source |
| 89 | + separate_signature: true |
| 90 | + filters: ["!^_"] |
| 91 | + docstring_options: |
| 92 | + ignore_init_summary: true |
| 93 | + merge_init_into_class: true |
| 94 | + show_signature_annotations: true |
| 95 | + signature_crossrefs: true |
| 96 | + extensions: |
| 97 | + - docs/plugins/griffe_doclinks.py |
| 98 | + import: |
| 99 | + - url: https://docs.python.org/3/objects.inv |
| 100 | + domains: [py, std] |
0 commit comments