-
Notifications
You must be signed in to change notification settings - Fork 1
/
mkdocs.yml
47 lines (45 loc) · 1.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
site_name: "Alisp: Lisp intrpeter written in C++"
site_author: "Stanislav Arnaudov"
site_favicon: favicon.ico
repo_url: https://github.com/palikar/alisp
edit_uri: edit/master/doc/
copyright: "Copyright (C) 2019-2020 Stanislav Arnaudoc"
docs_dir: doc
markdown_extensions:
- admonition
- codehilite
- toc:
separator: "_"
permalink: "#"
extra_css:
- css/extra.css
- css/style.css
nav:
- Home: index.md
- Language Reference: reference.md
- Basic Documentation: basic_doc.md
- File Manipulation: files_doc.md
- Streams Manipulation: streams_doc.md
- Modules:
- Index: './modules/index.md'
- Fileio : './modules/fileio.md'
- Math : './modules/math.md'
- Memory : './modules/memory.md'
- Platform : './modules/platform.md'
- System : './modules/system.md'
- Time : './modules/time.md'
- Base64 : './modules/base64.md'
- Fmt : './modules/fmt.md'
- Func : './modules/func.md'
- Json : './modules/json.md'
- XML : './modules/xml.md'
- Locale : './modules/locale.md'
- Process : './modules/process.md'
- Random : './modules/random.md'
- Re : './modules/re.md'
- Stack : './modules/stack.md'
- Queue : './modules/queue.md'
- Setc : './modules/setc.md'
- Dash : './modules/dash.md'
- S : './modules/s.md'
theme: readthedocs