42 lines
515 B
Markdown
42 lines
515 B
Markdown
|
+++
|
||
|
weight = 20
|
||
|
+++
|
||
|
|
||
|
# reveal-hugo
|
||
|
|
||
|
Presentation content lives in `content/reveal`.
|
||
|
|
||
|
Or manually set the type.
|
||
|
|
||
|
```toml
|
||
|
+++
|
||
|
type = "reveal"
|
||
|
+++
|
||
|
```
|
||
|
|
||
|
---
|
||
|
|
||
|
# reveal-hugo
|
||
|
|
||
|
Presentation sections are ordered by `weight`.
|
||
|
|
||
|
```toml
|
||
|
+++
|
||
|
weight = 20
|
||
|
+++
|
||
|
```
|
||
|
|
||
|
---
|
||
|
|
||
|
# reveal-hugo
|
||
|
|
||
|
Protip: use `fragment` shortcode to make content appear in sequence.
|
||
|
|
||
|
```
|
||
|
{{%/* fragment */%}} One {{%/* /fragment */%}}
|
||
|
```
|
||
|
|
||
|
{{% fragment %}} One {{% /fragment %}}
|
||
|
{{% fragment %}} Two {{% /fragment %}}
|
||
|
{{% fragment %}} Three {{% /fragment %}}
|