Files
reveal-hugo/exampleSite/content/home/shortcodes/other.md
T
2019-02-23 11:16:45 +01:00

888 B

+++ weight = 38 +++

Notes

Add speaker notes to your presentation with the note shortcode. Type 's' to see this slide's speaker notes.

---

{{%/* note */%}}
You found the speaker notes!
{{%/* /note */%}}

---

{{% note %}} You found the speaker notes! {{% /note %}}


{{< slide notes="You found the notes!" >}}

Notes

You can also add notes with the slide shortcode and notes attribute:

---

{{%/* slide notes="You found the notes!" */%}}

---

Write slides in HTML

Use a section tag with a data-noprocess attribute to avoid any processing by reveal-hugo.

<section data-noprocess>
  <h1>Hello world!</h1>
<section>
💡 This is useful if you can't get Markdown to output exactly what you want.