-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmkdocs.yml
More file actions
102 lines (96 loc) · 2.52 KB
/
mkdocs.yml
File metadata and controls
102 lines (96 loc) · 2.52 KB
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
site_name: pyFIES
site_description: Python implementation of FAO's Food Insecurity Experience Scale (SDG 2.1.2).
site_author: Nicholas E. Johnson
site_url: https://nejohnson2.github.io/pyFIES/
repo_url: https://github.com/nejohnson2/pyFIES
repo_name: nejohnson2/pyFIES
edit_uri: edit/main/docs/
copyright: Copyright © 2026 Nicholas E. Johnson and pyFIES contributors
theme:
name: material
palette:
- media: "(prefers-color-scheme: light)"
scheme: default
primary: green
accent: green
toggle:
icon: material/brightness-7
name: Switch to dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: green
accent: green
toggle:
icon: material/brightness-4
name: Switch to light mode
features:
- navigation.tabs
- navigation.sections
- navigation.top
- navigation.indexes
- search.suggest
- search.highlight
- content.code.copy
- content.code.annotate
- toc.follow
icon:
repo: fontawesome/brands/github
nav:
- Home: index.md
- Quickstart: quickstart.md
- Methodology: methodology.md
- Tutorials:
- End-to-end with FAO sample data: notebooks/01_parity_demo.ipynb
- Parity with RM.weights: parity.md
- API reference:
- api/index.md
- RaschModel: api/model.md
- Standards: api/standards.md
- Numerical core: api/core.md
- Contributing: contributing.md
- Changelog: changelog.md
plugins:
- search
- mkdocs-jupyter:
include_source: true
execute: false
include_requirejs: true
- mkdocstrings:
handlers:
python:
options:
docstring_style: google
show_source: true
show_root_heading: true
show_if_no_docstring: false
show_signature_annotations: true
separate_signature: true
line_length: 88
members_order: source
heading_level: 2
paths: [src]
markdown_extensions:
- admonition
- attr_list
- md_in_html
- footnotes
- pymdownx.details
- pymdownx.superfences
- pymdownx.snippets
- pymdownx.tabbed:
alternate_style: true
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.arithmatex:
generic: true
- toc:
permalink: true
extra_javascript:
- https://unpkg.com/mathjax@3/es5/tex-mml-chtml.js
extra:
social:
- icon: fontawesome/brands/github
link: https://github.com/nejohnson2/pyFIES