forked from sede-open/openMCMC
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml
113 lines (105 loc) · 2.78 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
# SPDX-FileCopyrightText: 2024 Shell Global Solutions International B.V. All Rights Reserved.
#
# SPDX-License-Identifier: Apache-2.0
---
# Project information
site_name: openMCMC
site_author: openMCMC
site_description: >-
This repository contains the Markov Chain Monte Carlo implementations we call openMCMC. It is part of the pyELQ project.
# Repository
repo_name: openMCMC
repo_url: https://github.com/sede-open/openMCMC
edit_uri: ""
docs_dir: docs
# Configuration
theme:
name: material
# Default values, taken from mkdocs_theme.yml
language: en
features:
- content.code.annotate
- content.code.copy
- content.code.select
- content.tabs.link
- content.tooltips
#- navigation.expand
- navigation.indexes
- navigation.instant
# - navigation.sections
- navigation.tabs
# - navigation.tabs.sticky
- navigation.top
# - navigation.tracking
- search.highlight
- search.share
- search.suggest
- toc.follow
palette:
- scheme: default
primary: custom
accent: custom
toggle:
icon: material/brightness-7
name: Switch to dark mode
- scheme: slate
primary: custom
accent: custom
toggle:
icon: material/brightness-4
name: Switch to light mode
font:
text: Roboto
code: Roboto Mono
icon:
tag:
pipelines: fontawesome/solid/timeline
extra:
generator: false
tags:
Pipelines: pipelines
plugins:
- search
- autorefs
- mkdocstrings:
handlers:
python:
paths: [src]
options:
members_order: source
docstring_style: "google"
- tags
watch:
- src/openmcmc
markdown_extensions:
- attr_list
- md_in_html
- meta
- admonition
- pymdownx.details
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_code_format
- pymdownx.tabbed:
alternate_style: true
- pymdownx.emoji:
emoji_index: !!python/name:material.extensions.emoji.twemoji
emoji_generator: !!python/name:materialx.emoji.to_svg # Page tree
- pymdownx.snippets:
url_download: true
nav:
- Home: index.md
- openMCMC User Guide:
- Distribution:
- Distribution: openmcmc/distribution/distribution.md
- Location Scale: openmcmc/distribution/location_scale.md
- GMRF: openmcmc/gmrf.md
- MCMC: openmcmc/mcmc.md
- Model: openmcmc/model.md
- Parameter: openmcmc/parameter.md
- Sampler:
- Sampler: openmcmc/sampler/sampler.md
- Metropolis-Hastings: openmcmc/sampler/metropolis_hastings.md
- Reversible Jump: openmcmc/sampler/reversible_jump.md