-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathmkdocs.yml
73 lines (72 loc) · 1.91 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
site_name: surveycodex docs
repo_url: https://github.com/LSSTDESC/surveycodex
site_url: https://lsstdesc.github.io/surveycodex/
site_description: A small python library that can clump lists of data together.
site_author: Alexandre Boucaud
use_directory_urls: false
# Theming
theme:
name: material
language: en
palette:
# primary: teal
# accent: indigo
- media: "(prefers-color-scheme: light)"
scheme: default
toggle:
icon: material/toggle-switch-off-outline
name: Switch to dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
toggle:
icon: material/toggle-switch
name: Switch to light mode
font:
text: Roboto
code: Roboto Mono
feature:
tabs: true
# logo: 'img/lsst.png'
# favicon: 'img/favicon.ico'
# Content
nav:
- Home:
- Index: index.md
- Parameters: parameters.md
- Guides:
- Getting Started: guides/getting-started.md
- Simulate Galaxy with Galsim: guides/create-galaxy.md
- Extend surveycodex objects: guides/heritage.md
- API:
- surveycodex.survey: api/survey.md
- surveycodex.filter: api/filter.md
- surveycodex.utilities: api/utilities.md
# Plugins
plugins:
- mkdocstrings:
default_handler: python
handlers:
python:
rendering:
show_source: false
docstring_section_style: list
selection:
docstring_style: numpy
watch:
- surveycodex
- search
copyright: Copyright © 2022 Maintained by <a href="https://twitter.com/alxbcd">Alexandre</a>.
# Mkdocs material extensions
# https://squidfunk.github.io/mkdocs-material/extensions
markdown_extensions:
- admonition
# - pymdownx.arithmatex:
# generic: true
- pymdownx.betterem
- pymdownx.caret
- pymdownx.inlinehilite
- pymdownx.highlight:
use_pygments: true
- pymdownx.superfences
- toc:
permalink: true