Skip to content

Commit

Permalink
Reveal to Jekyll configuration. Added Notes-markdown parameter
Browse files Browse the repository at this point in the history
  • Loading branch information
dploeger committed Dec 10, 2013
1 parent 6f15f8c commit 87f5fb1
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions _config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,4 @@ markdown: redcarpet
pygments: true
markdown_ext: ignoreme
reveal_theme: default
reveal_transition: default
2 changes: 1 addition & 1 deletion _layouts/reveal.html
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@
center: true,

theme: Reveal.getQueryHash().theme, // available themes are in /css/theme
transition: Reveal.getQueryHash().transition || 'default', // default/cube/page/concave/zoom/linear/fade/none
transition: '{{ site.reveal_transition }}', // default/cube/page/concave/zoom/linear/fade/none

// Parallax scrolling
// parallaxBackgroundImage: 'https://s3.amazonaws.com/hakim-static/reveal-js/reveal-parallax-1.jpg',
Expand Down
2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
---

{% for post in site.posts reversed %}
<section data-markdown data-separator="^\n---\n$" data-vertical="^\n--\n$">
<section data-markdown data-separator="^\n---\n$" data-vertical="^\n--\n$" data-notes="^Note:">
<script type="text/template">
{{ post.content }}
</script>
Expand Down

0 comments on commit 87f5fb1

Please sign in to comment.