Welcome to mirror list, hosted at ThFree Co, Russian Federation.

other.md « shortcodes « home « content « exampleSite - github.com/dzello/reveal-hugo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: fda5276f9278df20f5d253f35352d62f77520c92 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
+++
weight = 38
+++

## Notes

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

```markdown
---

{{%/* 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:

```markdown
---

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

---
```

---

<section data-noprocess>
  <h2>Write slides in HTML</h2>
  <p>Use a <code>section</code> tag with a <code>data-noprocess</code> attribute to avoid any processing by reveal-hugo.</p>
  <pre>
&lt;section data-noprocess&gt;
  &lt;h1&gt;Hello world!&lt;/h1&gt;
&lt;/section&gt;</pre>
  <small>💡 This is useful if you can't get Markdown to output exactly what you want.</small>
</section>