forked from HugoGranstrom/nimiSlides
-
Notifications
You must be signed in to change notification settings - Fork 0
/
nbook.nim
30 lines (27 loc) · 1.17 KB
/
nbook.nim
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
import nimibook
var book = initBookWithToc:
entry("Documentation", "index.nim", numbered = false)
section("Tutorials", "tutorials/index.nim"):
entry("Getting Started", "getting_started.nim")
entry("Code Blocks", "code_block.nim")
entry("Text Formatting", "text_formatting.nim")
entry("Images & Media", "images_media.nim")
entry("Layout", "layout.nim")
section("Fragments (Animations)", "fragments/index.nim"):
entry("Basics of Fragments", "basics.nim")
entry("List of Fragments", "list_fragments.nim")
entry("Animated Lists", "lists.nim")
entry("End-Fragments", "end_fragments.nim")
entry("Advanced Fragments", "advanced_fragments.nim")
section("Slide Options", "slide_options.nim"):
entry("Auto-Animate", "auto_animate.nim")
entry("Backgrounds", "backgrounds.nim")
entry("Themes & CSS", "themes.nim")
entry("Speaker View", "speaker.nim")
entry("Local Reveal.js installation", "local_reveal.nim")
entry("Inline HTML", "inline_html.nim")
entry("Print / PDF Export", "pdf_export.nim")
entry("Misc", "misc.nim")
entry("Automation", "automation.nim")
entry("Gotchas", "gotchas.nim")
nimibookCli(book)