Replies: 1 comment
-
Similar to: |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Thank you for making marp!
It would be nice to have a way of getting an overview of all of the slides, so speakers could quickly navigate across the whole presentation (Particularly useful for question and answer section at the end, where going back to particular slide comes in handy, be it in the presentation given, or in the extra pack of slides that the speaker tacked on at the end of the presentation).
I previously used such functionality in
deck.js
- you can see a live demo by going to this page, clicking inside the presentation container, and hitting the 'm' key#42 alludes to an approach to this kind of functionality, though I don't know if that's been implemented, as I use
marp-cli
.The inline SVG slide porition of the documentation suggests that such a feature was anticipated, but it's not clear to me how to apply it.
I hacked something up with some custom CSS and a bit of javascript to at least get the view, to convince myself that this shouldn't be too complicated.
In my hack, using
@marp-team/marp-cli v4.0.0 (w/ @marp-team/marp-core v4.0.0)
, which for me does inline svg out of the box, I tried removingbespoke-marp-inactive
class from all slides, adding the-active
class, but didn't succeed in getting the result I wanted until I removed thebespoke-marp-slide
class so I could get my customsection
tag CSS to apply. I struggled probably because I need a more specific CSS,. Another hacky approach might be toabuse the?view=next#2
query parameters and do a bunch of iframe embeds.There's certainly got to be a better way, but I thought I'd write this up to get some guidance, because right now I should be working on my presentation instead of messing with the software :)
Beta Was this translation helpful? Give feedback.
All reactions