forked from ChrisBuilds/terminaltexteffects
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml
111 lines (106 loc) · 2.94 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: TerminalTextEffects Docs
site_description: TerminalTextEffects Documentation
site_author: ChrisBuilds
repo_url: https://github.com/ChrisBuilds/terminaltexteffects
docs_dir: docs
theme:
name: material
palette:
scheme: slate
features:
- content.code.copy
- content.code.annotate
plugins:
- mkdocstrings
markdown_extensions:
- admonition
- pymdownx.superfences
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_code_format
- pymdownx.tabbed:
alternate_style: true
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.details
- attr_list
nav:
- Intro to TTE: index.md
- ChangeBlog: changeblog.md
- How to install & use TTE:
- Install: installation.md
- Application Usage: appguide.md
- Library Usage: libguide.md
# - Effect Building Guide:
# - effectguide/effectguide.md
# - effectguide/effectguide_lesson0.md
- Effects Showroom: showroom.md
- Library Cookbook: cookbook.md
- Reference:
- Engine:
- engine/baseeffect.md
- engine/basecharacter.md
- engine/eventhandler.md
- Animation:
- engine/animation/animation.md
- engine/animation/syncmetric.md
- engine/animation/charactervisual.md
- engine/animation/frame.md
- engine/animation/scene.md
- Motion:
- engine/motion/motion.md
- engine/motion/waypoint.md
- engine/motion/segment.md
- engine/motion/path.md
- Terminal:
- engine/terminal/terminal.md
- engine/terminal/terminalconfig.md
- engine/terminal/canvas.md
- Utils:
- engine/utils/ansitools.md
- engine/utils/argsdataclass.md
- engine/utils/argvalidators.md
- engine/utils/colorterm.md
- engine/utils/easing.md
- engine/utils/geometry.md
- engine/utils/color.md
- engine/utils/gradient.md
- engine/utils/hexterm.md
- Effects:
- effects/beams.md
- effects/binarypath.md
- effects/blackhole.md
- effects/bouncyballs.md
- effects/bubbles.md
- effects/burn.md
- effects/colorshift.md
- effects/crumble.md
- effects/decrypt.md
- effects/errorcorrect.md
- effects/expand.md
- effects/fireworks.md
- effects/middleout.md
- effects/orbittingvolley.md
- effects/overflow.md
- effects/pour.md
- effects/print.md
- effects/rain.md
- effects/randomsequence.md
- effects/rings.md
- effects/scattered.md
- effects/slide.md
- effects/spotlights.md
- effects/spray.md
- effects/swarm.md
- effects/synthgrid.md
- effects/unstable.md
- effects/slice.md
- effects/vhstape.md
- effects/waves.md
- effects/wipe.md