aboutsummaryrefslogtreecommitdiff
path: root/README
diff options
context:
space:
mode:
authorJohn MacFarlane <fiddlosopher@gmail.com>2013-10-13 15:36:19 -0700
committerJohn MacFarlane <fiddlosopher@gmail.com>2013-10-13 15:37:25 -0700
commit0df7cce37da162c656aa88ecb67788109749668c (patch)
treeaefb6866aa3a6dedd00fbd3511ffbd210efa4c6b /README
parent2ae7f5e2a0a741fa4822448ad378280f77ab0dd5 (diff)
downloadpandoc-0df7cce37da162c656aa88ecb67788109749668c.tar.gz
Treat div with class "notes" as speaker notes in slide formats.
Currently beamer goes to `\note{}`, revealjs to `<aside class="notes">`, and the notes are simply suppressed in other formats. Closes #925.
Diffstat (limited to 'README')
-rw-r--r--README18
1 files changed, 18 insertions, 0 deletions
diff --git a/README b/README
index ba1f93661..133c99f64 100644
--- a/README
+++ b/README
@@ -2731,6 +2731,24 @@ bibliographies:
# References {.allowframebreaks}
+Speaker notes
+-------------
+
+reveal.js has good support for speaker notes. You can add notes to your
+markdown document thus:
+
+ <div class="notes">
+ This is my note.
+
+ - It can contain markdown
+ - like this list
+
+ </div>
+
+To show the notes window, press `s` while viewing the presentation.
+Notes are not yet supported for other slide formats, but the notes
+will not appear on the slides themselves.
+
Literate Haskell support
========================