-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpresla.toml
37 lines (28 loc) · 1.33 KB
/
presla.toml
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
## The path to your markdown files.
## One markdown file holds one presentation
MarkdownPath="./talks"
## Whatever you want to show as text when including /svg/footer-text.svg
## By default shown in the lower right corner
FooterText="OpenCaching e.V. @opencaching"
## The port to bind on. You should use localhost as host
ListenOn="localhost:8080"
## Optional: Path to your own template.
## Needs the index.html holding remarkjs, an info.md as starting point and footer-text.svg
TemplatePath="./templates"
## Optional: path to the templates static files
## Holds css, js, fonts and images used in your template
StaticFiles="./static"
## Optional, define your own Executors for running code from the presentation
# CustomExecutors="/home/user/Documents/presla-executors"
## Can be set to "debug", defaults to "warning": Set log level to debug
# LogLevel="debug"
## Can be set to "json", defaults to "text": Set log format to debug
# LogFormat="json"
## Controls if presla looks for a newer version on start
# CheckUpdateOnStart=true
## Optional, can be used multiple times
## This way you can specify a template used for only one presentation
# [[Presentations]]
# PresentationName="my_presentation"
# TemplatePath="/home/user/Documents/presla-theme-my-presentation/static"
# StaticFiles="/home/user/Documents/presla-theme-my-presentation/templates"