forked from Dyalog/APLCourse
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmkdocs.yml
64 lines (64 loc) · 1.82 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: APL Course
site_description: A guided introduction to Dyalog APL
docs_dir: docs/
site_url: https://dyalog.com
markdown_extensions:
- pymdownx.arithmatex:
generic: true
- pymdownx.highlight:
use_pygments: false
- attr_list
- pymdownx.emoji:
emoji_index: !!python/name:materialx.emoji.twemoji
emoji_generator: !!python/name:materialx.emoji.to_svg
- admonition
- pymdownx.extra
- pymdownx.details
- pymdownx.superfences
- abbr
extra_javascript:
- javascripts/config.js
- https://polyfill.io/v3/polyfill.min.js?features=es6
- https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js
theme:
name: material
favicon: 'img/favicon-32.png'
language: en
logo: 'img/dyalog-white.svg'
features:
- navigation.instant
extra_css:
- style/main.css
extra:
social:
- icon: fontawesome/brands/dyalog
link: https://dyalog.com
- icon: material/elephant
link: https://mastodon.social/@dyalog
- icon: fontawesome/brands/twitter
link: https://twitter.com/dyalogapl
nav:
- About: index.md
- basic-syntax-and-arithmetic.md
- dfns-and-assignment.md
- array-logic-data-driven-conditionals.md
- multidimensional-and-nested-arrays.md
- cells-and-axes.md
- finding-and-replacing-values.md
- selecting-from-arrays.md
- broken-keyboard-problems.md
- loops-and-recursion.md
- Extra Assignment: Assignment.md
- Workspace Basics: Workspaces.md
- Namespaces and Other Objects: Namespaces.md
- Getting Help: Help.md
- User-defined Functions: user-defined-functions.md
- Operators: Operators.md
- Quad Names: Quad names.md
- error-handling-and-debugging.md
- Data IO: Data.md
- Code IO: Code.md
- External Interfaces: Interfaces.md
- Historical Quirks: Quirks.md
- Interpreter Internals: Interpreter-internals.md
- Further Reading: Reading.md