Welcome!
-
-
- Learn Home
- Core Concepts
- Companies and Departments
- Courses
- Course Status and Visibility
- Sections
- Video Activities
- Reading Activities
- Document Activities
- Enrolling People in a Course
- Bulk Enroll With CSV
- Roles in a Course
- How Progress Is Tracked
- Course Reports
- Knowledge Base Overview
- Libraries and Folders
- Uploading Content Items
- Library Visibility
- AI Agent per Library
- My Courses
- Platform People
-
- Project Structure Template
- Table of Contents (TOC)
- Content Folder
- Introduction to Markdown
- Markdown Basics
- Markdown Lists
- Markdown Links
- Markdown Images
- Markdown Code
- Markdown Tables
- Markdown Equations
- Markdown Videos
- Markdown Embedded HTML
- VS Code Snippets
- Introduction to Styles
- Framed Narrations
- Markdown Configuration
- Editor Setup
-
Content Files
The content of each .md file must adhere to the following rules:
- 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). - Slide separator: Each slide must be separated by three dashes
---. - 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] -->