diff --git a/exampleSite/content/home/usage-shortcodes.md b/exampleSite/content/home/usage-shortcodes.md index d186fc9..8704a0e 100644 --- a/exampleSite/content/home/usage-shortcodes.md +++ b/exampleSite/content/home/usage-shortcodes.md @@ -78,3 +78,20 @@ Keep scrolling down. Use the right arrow or swipe right to continue. {{% /section %}} + +--- + +### Note shortcode + +Add speaker notes to your presentation. + +```markdown +{{%/* note */%}} +Type 's' to see this slide's speaker notes. +{{%/* /note */%}} +``` + +{{% note %}} +You found the speaker notes! +{{% /note %}} + diff --git a/layouts/shortcodes/note.html b/layouts/shortcodes/note.html new file mode 100644 index 0000000..5d28fce --- /dev/null +++ b/layouts/shortcodes/note.html @@ -0,0 +1 @@ + \ No newline at end of file