-
Notifications
You must be signed in to change notification settings - Fork 4
/
mkdocs.yml
67 lines (59 loc) · 1.73 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
site_name: MoMEMta
site_description: 'Modular Matrix Element Method implementation'
site_author: 'The MoMEMta team'
site_url: 'https://momemta.github.io'
site_dir: _site
google_analytics: ['UA-78443359-1', 'momemta.github.io']
# Copyright
copyright: 'Copyright © 2016 - 2018 the MoMEMta team'
extra:
version: 'v1.0.0'
social:
- type: 'envelope'
link: 'mailto:[email protected]'
title: 'Contact us'
- type: 'book'
link: 'https://momemta.github.io/MoMEMta/'
title: 'Technical documentation'
- type: 'map'
link: 'https://trello.com/b/lQXfKafM/momemta-roadmap'
title: 'Roadmap'
repo_name: 'GitHub'
repo_url: 'https://github.com/MoMEMta/MoMEMta'
edit_uri: null
theme:
name: 'material'
custom_dir: 'theme'
logo: 'images/logo.svg'
palette:
primary: 'blue grey'
accent: 'teal'
# Extensions
markdown_extensions:
- codehilite
#pygments_style: base16-eighties.dark
- admonition
- mdx_math:
enable_dollar_delimiter: true
- toc:
permalink: true
- footnotes
- meta
# MathJax
extra_javascript:
- https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.1/MathJax.js?config=TeX-AMS-MML_HTMLorMML
extra_css:
- 'stylesheets/base16-eighties.dark.css'
- 'stylesheets/momemta.css'
nav:
- The MoMEMta project: index.md
- What is MoMEMta?: introduction.md
- Getting started: 'getting-started.md'
- 'In depth':
- 'Calling MoMEMta': 'in-depth/calling-momemta.md'
- 'Configuration file': 'in-depth/configuration-file.md'
- 'Parameters': 'in-depth/parameters.md'
- 'Adding a new module': 'in-depth/new-module.md'
- 'Validation': 'in-depth/validation.md'
- 'Release notes': 'changelog.md'
#- 'Acknowledgements': 'acknowledgement.md'