themen-hugo-35c3-reveal/exampleSite/content/home/usage.md

110 lines
1.0 KiB
Markdown
Raw Normal View History

2018-04-30 20:04:48 +02:00
+++
weight = 20
+++
# Usage
---
2018-04-30 20:13:10 +02:00
## Prerequisite
2018-04-30 20:04:48 +02:00
First, add this to your `config.toml`:
2018-04-30 20:04:48 +02:00
2018-04-30 20:13:10 +02:00
```toml
[outputFormats.Reveal]
baseName = "index"
mediaType = "text/html"
isHTML = true
2018-04-30 20:04:48 +02:00
```
---
### Presentation at site root
Create `content/_index.md`:
```markdown
+++
outputs = ["Reveal"]
+++
# Slide 1
Hello world!
```
---
### Add slides in same file
Separate them by `---`:
```
# Slide 1
Hello world!
---
# Slide 2
Hello program!
```
---
### Add slides with other files
Add slides to `content/home/*.md`
```markdown
+++
weight = 10
+++
# Slide 3
---
# Slide 4
```
<small>💡 Tip: Use `weight` to specify the order that files should be added.</small>
2018-05-16 04:15:36 +02:00
---
### Presentation at '/{section}/'
2018-04-30 20:04:48 +02:00
In `content/{section}/_index.md`:
2018-04-30 20:04:48 +02:00
```markdown
+++
outputs = ["Reveal"]
+++
# Slide 1
---
# Slide 2
```
---
Add slides from other files in `content/{section}/*.md`
2018-04-30 20:04:48 +02:00
```markdown
+++
2018-04-30 20:13:10 +02:00
weight = 10
2018-04-30 20:04:48 +02:00
+++
# Slide 3
2018-04-30 20:13:10 +02:00
---
# Slide 4
2018-04-30 20:04:48 +02:00
```
<small>💡 Tip: Use `weight` to specify the order that files should be added.</small>