-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmkdocs.yml
85 lines (78 loc) · 2.31 KB
/
mkdocs.yml
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
77
78
79
80
81
82
83
84
85
theme:
name: "material"
features:
- navigation.sections
- toc.integrate
- header.autohide
palette:
- scheme: default
primary: white
accent: amber
toggle:
icon: material/weather-night
name: Switch to dark mode
- scheme: slate
primary: black
accent: amber
toggle:
icon: material/weather-sunny
name: Switch to light mode
icon:
repo: fontawesome/brands/github # github logo
logo: _static/logo_docs.svg
favicon: _static/logo_docs.svg
site_name: caustics
site_description: Documentation for the caustics package.
site_author: Fran Bartolich
repo_url: https://github.com/fbartolic/caustics
repo_name: fbartolic/caustics
extra_javascript:
# MathJax support, https://squidfunk.github.io/mkdocs-material/reference/mathjax/
- _static/mathjax.js
- https://polyfill.io/v3/polyfill.min.js?features=es6
- https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js
markdown_extensions:
- pymdownx.arithmatex: # LaTeX via MathJax
generic: true
- pymdownx.superfences # syntax highlighting
- pymdownx.details # expandable regions denoted by ???
- pymdownx.snippets:
base_path: docs
- admonition
- toc:
permalink: "¤" # clickable link to each section heading
toc_depth: 4
plugins:
- search
- autorefs # cross-links to headings
- mknotebooks # Jupyter notebooks
- mkdocstrings:
handlers:
python:
setup_commands:
- import pytkdocs_tweaks
- pytkdocs_tweaks.main()
selection:
inherited_members: true
rendering:
show_root_heading: true
show_root_full_path: true
show_if_no_docstring: true
show_signature_annotations: true
show_source: false
members_order: source
# heading_level: 4
nav:
- 'index.md'
- Basic API:
- 'api/point_source.md'
- 'api/extended_source.md'
- 'api/lightcurve.md'
- 'api/trajectory.md'
- 'api/linalg.md'
# - Introduction:
# -
# - Usage:
# -
# - Tutorials:
# -