serverless-presentation/conf.py

50 lines
1.2 KiB
Python
Raw Permalink Normal View History

2020-06-02 17:12:09 +02:00
# -*- coding: utf-8 -*-
# -- Project information -----------------------------------------------------
2020-06-09 09:58:43 +02:00
project = 'edifice-corb serverless architecture'
copyright = '2020, Pavle Portic'
author = 'Pavle Portic'
version = '0.1.0'
2020-06-02 17:12:09 +02:00
# -- General configuration ---------------------------------------------------
2020-06-09 09:58:43 +02:00
extensions = ['sphinx_revealjs']
templates_path = ['_templates']
source_suffix = '.rst'
master_doc = 'index'
2020-06-02 17:12:09 +02:00
language = None
2020-06-09 09:58:43 +02:00
exclude_patterns = [
'_build',
'Dockerfile',
'watch.sh',
]
2020-06-02 17:12:09 +02:00
pygments_style = None
# -- Options for HTML output -------------------------------------------------
2020-06-09 09:58:43 +02:00
html_theme = 'alabaster'
2020-06-02 17:12:09 +02:00
html_theme_options = {
2020-06-09 09:58:43 +02:00
'revealjs_theme': 'league',
2020-06-02 17:12:09 +02:00
}
2020-06-09 09:58:43 +02:00
html_static_path = ['_static']
2020-06-02 17:12:09 +02:00
# -- Options for Reveal.js output ---------------------------------------------
2020-06-09 09:58:43 +02:00
revealjs_style_theme = 'black'
revealjs_script_conf = '''
{
controls: true,
progress: true,
history: true,
center: true,
transition: "slide",
}
'''
2020-06-02 17:12:09 +02:00
revealjs_script_plugins = [
2020-06-09 09:58:43 +02:00
{
'src': 'revealjs/plugin/notes/notes.js',
'options': '{async: true}',
},
{
'src': 'revealjs/plugin/highlight/highlight.js',
'options': '{async: true, callback: function() { hljs.initHighlightingOnLoad(); }}',
},
2020-06-02 17:12:09 +02:00
]