Welcome!

Content Files

The content of each .md file must adhere to the following rules:

  1. Header containing: It must start with a header containing marp: true, along with a theme and any other Marp global directives you want (see Introduction to Styles).
  2. Slide separator: Each slide must be separated by three dashes ---.
  3. Slide content and narration: Every slide should consist of two elements: the slide content in Markdown and the slide narration in HTML comments. Every line inside an HTML comment is read aloud, except Marp directive lines such as <!-- _class: lead --> or <!-- paginate: true -->, which are treated as instructions. So don't use comments for private notes.

Header containing

---
marp: true
---

---
marp: true
backgroundColor: #c9ee
---

Slide separator

---
marp: true
---

# Slide 1

[Text slide 1]

<!-- [Narration Slide 1] -->

---

# Slide 2

[Text slide 2]

<!-- [Narration Slide 2] -->

Slide content and narration

---
marp: true
---

[Slide content]

<!-- [Narration] -->