1 KiB
1 KiB
+++ weight = 20 +++
Usage
Prerequisite
First, add this to your config.toml
:
[outputFormats.Reveal]
baseName = "index"
mediaType = "text/html"
isHTML = true
Presentation at site root
Create content/_index.md
:
+++
outputs = ["Reveal"]
+++
# Slide 1
Hello world!
Add slides
Separate them by ---
surrounded by blank lines:
# Slide 1
Hello world!
---
# Slide 2
Hello program!
Add slides with other files
Add slides to content/home/*.md
+++
weight = 10
+++
# Slide 3
---
# Slide 4
💡 Tip: Use weight
to specify the order that files should be considered.
Presentation at '/{section}/'
Add slides to content/{section}/_index.md
:
+++
outputs = ["Reveal"]
+++
# Slide 1
---
# Slide 2
Add slides from other files in content/{section}/*.md
+++
weight = 10
+++
# Slide 3
---
# Slide 4
💡 Tip: Use weight
to specify the order that files should be considered.