diff options
author | Hakim El Hattab | 2013-08-20 22:32:19 -0400 |
---|---|---|
committer | Hakim El Hattab | 2013-08-20 22:32:19 -0400 |
commit | 631a237b3645627407cb433514042611824d890f (patch) | |
tree | b3c71604bcc28881cd0e5680d254192891b102b8 /README.md | |
parent | 5cd088cec3818192e55a9af9ff34de6039b56553 (diff) | |
parent | 245efee894311bc2cafecf9f7fa61547013ac975 (diff) |
merge support for notes when using external markdown
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 15 |
1 files changed, 13 insertions, 2 deletions
@@ -55,7 +55,7 @@ This is based on [data-markdown](https://gist.github.com/1343518) from [Paul Iri You can write your content as a separate file and have reveal.js load it at runtime. Note the separator arguments which determine how slides are delimited in the external file. The ```data-charset``` attribute is optional and specifies which charset to use when loading the external file. ```html -<section data-markdown="example.md" data-separator="^\n\n\n" data-vertical="^\n\n" data-charset="iso-8859-15"></section> +<section data-markdown="example.md" data-separator="^\n\n\n" data-vertical="^\n\n" data-notes="^Note:" data-charset="iso-8859-15"></section> ``` ### Configuration @@ -478,7 +478,7 @@ If you want to add a theme of your own see the instructions here: [/css/theme/RE reveal.js comes with a speaker notes plugin which can be used to present per-slide notes in a separate browser window. The notes window also gives you a preview of the next upcoming slide so it may be helpful even if you haven't written any notes. Press the 's' key on your keyboard to open the notes window. -By default notes are written using standard HTML, see below, but you can add a ```data-markdown``` attribute to the ```<aside>``` to write them using Markdown. +By default notes are written using standard HTML, see below, but you can add a ```data-markdown``` attribute to the ```<aside>``` to write them using Markdown, or separate your external markdown content file with the separator specified within your original declaration where notes begin. ```html <section> @@ -490,6 +490,17 @@ By default notes are written using standard HTML, see below, but you can add a ` </section> ``` +```html +<section data-markdown="example.md" data-separator="^\n\n\n" data-vertical="^\n\n" data-notes="^[[["></section> + +# Title +## Sub-title + +Here is some content... +[[[ +These are my notes for this slide. +``` + ## Server Side Speaker Notes In some cases it can be desirable to run notes on a separate device from the one you're presenting on. The Node.js-based notes plugin lets you do this using the same note definitions as its client side counterpart. Include the required scripts by adding the following dependencies: |