seed-presentation/presentation/conf.py
2022-05-12 02:24:27 +02:00

45 lines
1.2 KiB
Python

# -*- coding: utf-8 -*-
# -- Path setup --------------------------------------------------------------
# -- Project information -----------------------------------------------------
project = "Seed - Webframework in Rust"
copyright = "2022, ThetaDev"
author = "ThetaDev"
version = '0.1.0'
release = version
# -- General configuration ---------------------------------------------------
extensions = ["sphinx_revealit"]
templates_path = ["_templates"]
source_suffix = ".rst"
language = 'en'
exclude_patterns = ["_build", ".tox", "Thumbs.db", ".DS_Store"]
pygments_style = 'monokai'
# -- Options for HTML output -------------------------------------------------
html_theme = "alabaster"
html_static_path = ["_static"]
# -- Options for Reveal.js output ---------------------------------------------
revealjs_static_path = ["_static"]
revealjs_style_theme = "black"
revealjs_use_tailwind = True
revealjs_purge_tailwind = True
revealjs_script_conf = {
'controls': False,
'progress': True,
'history': True,
'center': False,
'transition': "slide",
'autoPlayMedia': True,
'width': 1920,
'height': 1080,
'margin': 0.04,
}
revealjs_script_plugins = [
'RevealZoom', 'RevealSearch'
]