-
Notifications
You must be signed in to change notification settings - Fork 567
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* add slide numbering - fixes #737 * Update slides.py Co-authored-by: Sylvain Corlay <[email protected]>
- Loading branch information
1 parent
5d2c5e2
commit dd6d9c7
Showing
2 changed files
with
10 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,6 +5,7 @@ | |
{% set reveal_url_prefix = resources.reveal.url_prefix | default('https://unpkg.com/[email protected]', true) %} | ||
{% set reveal_theme = resources.reveal.theme | default('white', true) %} | ||
{% set reveal_transition = resources.reveal.transition | default('slide', true) %} | ||
{% set reveal_number = resources.reveal.number | default('', true) %} | ||
{% set reveal_scroll = resources.reveal.scroll | default(false, true) | json_dumps %} | ||
|
||
{%- block header -%} | ||
|
@@ -144,6 +145,7 @@ require( | |
progress: true, | ||
history: true, | ||
transition: "{{reveal_transition}}", | ||
slideNumber: "{{reveal_number}}", | ||
plugins: [RevealNotes] | ||
}); | ||
|