-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml
112 lines (106 loc) · 4.29 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
site_name: Squiid Documentation
repo_url: https://gitlab.com/ImaginaryInfinity/squiid-calculator/squiid/
repo_name: GitLab
edit_uri: edit/trunk/docs/
site_description: Squiid is a modular calculator written in Rust. It is currently very early in development but it is intended to be the successor to ImaginaryInfinity Calculator.
nav:
- Home: index.md
- Getting Started: getting_started.md
- User Documentation:
- Input Modes: user/input_modes.md
- Constants: user/constants.md
- Variables: user/variables.md
- Negative Numbers: user/negative_numbers.md
- Previous Answer: user/previous_answer.md
- Commands:
- Operations:
- Add: user/commands/operations/add.md
- Divide: user/commands/operations/divide.md
- Modulo: user/commands/operations/mod.md
- Multiply: user/commands/operations/multiply.md
- Power: user/commands/operations/power.md
- Subtract: user/commands/operations/subtract.md
- Functions:
- Absolute Value: user/commands/functions/abs.md
- Clear (Algebraic): user/commands/functions/clear.md
- Purge: user/commands/functions/purge.md
- Round: user/commands/functions/round.md
- Square Root: user/commands/functions/sqrt.md
- Quit: user/commands/functions/quit.md
- Trigonometry:
- Arccosine: user/commands/trig/acos.md
- Arcsine: user/commands/trig/asin.md
- Arctangent: user/commands/trig/atan.md
- Cosecant: user/commands/trig/csc.md
- Cosine: user/commands/trig/cos.md
- Cotangent: user/commands/trig/cot.md
- Secant: user/commands/trig/sec.md
- Sine: user/commands/trig/sin.md
- Tangent: user/commands/trig/tan.md
- Logarithms:
- Logarithm (Base 10): user/commands/logs/log.md
- Logarithm (Specified Base): user/commands/logs/blog.md
- Natural Log: user/commands/logs/ln.md
- Logic:
- Equals: user/commands/logic/eq.md
- Greater Than: user/commands/logic/gt.md
- Greater Than or Equal To: user/commands/logic/geq.md
- Less Than: user/commands/logic/lt.md
- Less Than or Equal To: user/commands/logic/leq.md
- RPN Mode:
- Change Sign: user/commands/rpn/chs.md
- Clear (RPN): user/commands/rpn/clear.md
- Drop: user/commands/rpn/drop.md
- Duplicate: user/commands/rpn/dup.md
- Invert: user/commands/rpn/invert.md
- Roll Down: user/commands/rpn/rolldown.md
- Roll Up: user/commands/rpn/rollup.md
- Store: user/commands/rpn/store.md
- Swap: user/commands/rpn/swap.md
- Undo: user/commands/rpn/undo.md
- Redo: user/commands/rpn/redo.md
- Internal Functions:
- Inverted Store: user/commands/internal-funcs/invstore.md
- Developer Documentation:
- Cross Compiling: dev/cross_compiling.md
- Communication Protocol: dev/comm_prot.md
- Configuration Protocol: dev/configuration_protocol.md
- Adding an IPC Backend: dev/adding_ipc_backend.md
- Squiid Parser: dev/parser.md
- Squiid Engine: dev/engine.md
theme:
name: material
language: en
palette:
scheme: slate
primary: indigo
accent: indigo
font: false
logo: img/favicon.png
favicon: img/favicon.png
features:
- content.code.annotate
- content.code.copy
- content.action.edit
- content.action.view
markdown_extensions:
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_code_format
- pymdownx.tabbed:
alternate_style: true
- pymdownx.betterem
- pymdownx.inlinehilite
- pymdownx.snippets
- admonition
- pymdownx.keys
plugins:
- search
extra_css:
- style.css