Slides core (optionally enabled) plugin is a great addition to the Markdown editing experience in Obsidian! I assume internally it uses the reveal.js features. I’m impressed almost perfect - [x] checkboxes working acceptably well in Obsidian! (unlike in Reveal JS markdown itself!)
My request is the most important Vertical Slides feature to be added.
Here’s how it works usually:
- Given a markdown file as follows, the horizontal pages are separated by the
---(same as in Obsidian Slides plugin). - The vertical slides are separated by the
+++(as you may know these are configurable, and would be nice to be able to configure in Obsidian as well.)
# 🧠 Main Topic Slide
---
## 📘 Section 1
Content of section 1.
+++
### 🔹 Subsection 1.1
More detail in vertical slide.
+++
### 🔹 Subsection 1.2
Some more details.
---
## 📘 Section 2
Content continues here.
### 🚀 Project Progress
- [x] Design completed
- [ ] Frontend integration
In the HTML file in reveal.js, the separators can be defined (notice I have the horizontal separator defined as --- and the vertical as +++) in reg-ex format.
<section data-markdown="slides.md"
data-separator="^---$"
data-separator-vertical="^\+\+\+$"
data-separator-notes="^Note:"
data-charset="utf-8">
</section>
So it would be great if
- The vertical slides are introduced in Obsidian
- And also the separators are configurable.
Thank you team!