Update Configuration Options (YAML Meta Data) authored by Armin Bernstetter's avatar Armin Bernstetter
......@@ -102,7 +102,8 @@ autoSlideStoppable: "true" | "false"
### backgroundTransition
<details>
- Transition style for full page slide backgrounds (defaults no `none`)
- Transition style for full page slide backgrounds (defaults no `none`).
See also [Configuration-Options-(YAML-Meta-Data)#transition](Configuration-Options-(YAML-Meta-Data)#transition)
```
backgroundTransition: none/fade/slide/convex/concave/zoom
......@@ -762,14 +763,14 @@ For example, to set the background color of a all H2 header elements
### template
- base-css
- css
- favicon TODO: Need working example
- include-js
- base-css: The first CSS file that is loaded by the template (defaults to `''`).
- css: A list of additional CSS files. `base-css` does not need to be defined to use `css`
- favicon
- include-js: a list of Javascript files that are included in the slide deck before Reveal.js is initialized (defaults to `[]`)
- title-page
- teaser-img
- banner
- affiliation-logo
- teaser-img: an image that is placed below the title line on the title slide (defaults to `''`)
- banner: a header image on the title slide (defaults to `''`)
- affiliation-logo: An image that is placed above the affiliation information on the title slide (defaults to `''`)
<details>
Template subsumes several different options that live under its namespace. All of them can be defined under one `template` definition.
......@@ -779,24 +780,17 @@ Example: (more detailed examples under each specific option)
```
template:
favicon:
# the first CSS file that is loaded by the template (defaults to `''`)
base-css: basefile.css
#
css:
- file1.css
- file2.css
# a list of Javascript files that are included in the slide deck before Reveal.js is initialized (defaults to `[]`)
include-js:
- file1.js
- file2.js
title-page:
# an image that is placed below the title line on the title slide (defaults to `''`)
teaser-img: include/teaser.png
# a header image on the title slide (defaults to `''`)
banner: include/banner.png
# an image that is placed above the affiliation information on the title slide (defaults to `''`)
affiliation-logo: include/affiliation.png
```
</details>
......
......