-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmkdocs.yml
78 lines (73 loc) · 2.59 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
site_name: Wolfram Language Specification
site_author: Robert Jacobson
copyright: 'Copyright © 2018–2020 Robert Jacobson'
site_description: Wolfram Language Specification
repo_url: https://github.com/WLTools/LanguageSpec
theme:
name: readthedocs
custom_dir: docs/extras/
include_homepage_in_sidebar: false
prev_next_buttons_location: 'both'
navigation_depth: 4
sticky_navigation: true
titles_only: false
collapse_navigation: false
highlightjs: false
extra_css:
- extras/css/material-icons.css
- extras/css/admonitions.css
- extras/css/mma.css
- extras/css/fixes.css
- extras/css/tasklist.css
- 'https://cdnjs.cloudflare.com/ajax/libs/KaTeX/0.9.0/katex.min.css'
extra_javascript:
- 'https://cdnjs.cloudflare.com/ajax/libs/KaTeX/0.9.0/katex.min.js'
- extras/js/usekratex.js
markdown_extensions:
- toc:
permalink: True
# - sane_lists
- markdown_include.include:
base_path: docs
- admonition
- footnotes
- pymdownx.arithmatex:
generic: true
- pymdownx.highlight:
use_pygments: true
guess_lang: false
- pymdownx.betterem:
smart_enable: all
- pymdownx.inlinehilite
- pymdownx.magiclink
- pymdownx.smartsymbols
- pymdownx.superfences
- pymdownx.tasklist:
custom_checkbox: true
- pymdownx.tilde
- pymdownx.details
plugins:
- search:
prebuild_index: true
nav:
- 'Syntax':
- 'Syntax Tasks': 'Specification/Syntax/index.md'
- 'Number Representations': 'Specification/Syntax/Number-representations.md'
- 'Operator Table': 'Specification/Syntax/OperatorTable.md'
- 'Pseudo Operators': 'Specification/Syntax/Pseudo-operators.md'
- 'Semantics':
- 'Semantics Tasks': 'Specification/Semantics/index.md'
- 'Number Literals': 'Specification/Semantics/Number-literal-semantics.md'
- 'Standard Library Tasks': 'Specification/StandardLibrary/index.md'
- 'Interfaces Tasks': 'Specification/Interfaces/index.md'
- 'Resources':
- 'Index': 'Resources/index.md'
- 'Exploring Mathematica': 'Resources/Exploring-Mathematica.md'
- 'List of WL Projects': 'Resources/List-of-W-Language-Projects.md'
- 'Programming Tools': 'Resources/ProgrammingTools.md'
- 'MMA Notebook Vs. Frontend': 'Resources/KernelVsFE.md'
- 'Contributing':
- 'How to Contribute': 'Contributing/index.md'
- 'Style Guide': 'Contributing/Style-Guide.md'
- 'Homeless Content': 'Contributing/Homeless-content.md'
- 'Language Specification Tasks': 'Specification/index.md'