Skip to content

Instantly share code, notes, and snippets.

View bdpedigo's full-sized avatar

Ben Pedigo bdpedigo

View GitHub Profile
@yhatt
yhatt / hide-slides-plugin.js
Last active March 23, 2025 00:31
Marp hide slides plugin example
const marpHideSlidesPlugin = (md) => {
md.marpit.customDirectives.local.hide = (value) => ({
hide: value === 'true',
})
md.core.ruler.after(
'marpit_directives_apply',
'marpit_hide_slides',
(state) => {
let withinSlide = false