-
Notifications
You must be signed in to change notification settings - Fork 4
/
mkdocs.yml
65 lines (56 loc) · 2.27 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
site_name: TDS
site_url: https://tds-scidac.github.io
docs_dir: 'src'
markdown_extensions:
- extra # allow markdown in <div markdown="1">
- fenced_code # GitHub style code blocks, e.g. ```python, see https://highlightjs.readthedocs.org/en/latest/css-classes-reference.html for a list of languages
- footnotes
- attr_list # Allow us to add link attributes
#repo_url: https://github.com/tds-scidac/tds-scidac.github.io
#remote_name: origin
nav:
- Home: index.md
- News: news.md
- Physics:
- 'Control & flux surface destruction': cont-fmr.md
- 'Nonlinear MHD leading into disruption': pixie3d.md
- 'Aligning thermal & current quenches with high density low-Z injection': pixiesheath.md
- 'Thermal quench of core plasmas': gts.md
- 'Thermal quench of edge/boundary plasmas': bout.md
- 'Parallel transport physics of plasma thermal quench': TQ-VPIC.md
- 'Collisional-radiative modeling of disrupting plasma': cr.md
- 'Kinetic modeling of plasma-wall and plasma-neutral interaction': sheath.md
- 'Multifluid modeling of plasma/neutral interaction': drekar-new.md
- 'Plasma-Material Interactions for Disruption Mitigation': plasmamaterials.md
- 'Resistive MHD modeling of plasma instabilities and VDE': drekar-mhd.md
- 'Integrated runaway modeling for current quench': RAMc.md
- Computing:
- 'Algorithmic innovation for anisotropic transport': anisotropic.md
- 'MFEM-based implicit MHD solver with AMR': mfem.md
- 'Parallel scaling of fluid plasma simulations in Drekar': drekar-cmp.md
- 'PETSc-p4est relativistic Fokker-Planck-Boltzmann solver': fokkerplanck.md
- 'Scalable hybridized DG and exponential DG for fluid models': hdg.md
- 'Uncertainty Quantification': uq.md
- 'Machine Learning': ml.md
- Publications: publications.md
- Gallery: gallery.md
- Awards: awards.md
- About: about.md
theme:
name: mkdocs # required. Can be anything as long as custom_dir is set correctly below
custom_dir: template
features:
- search.suggest
extra:
include_next_prev: false # turn off next/previous buttons
plugins:
- search
- macros:
include_dir: "src/"
- bibtex:
bib_file: "src/refs.bib"
- exclude-search:
exclude:
# List of pages that will not be searched
- index.md
google_analytics: ['UA-101697-3', 'https://tds-scidac.github.io/']