Skip to content

Instantly share code, notes, and snippets.

@baig
Created August 24, 2015 17:17
Show Gist options
  • Save baig/c3bbc454c707f8ac31e8 to your computer and use it in GitHub Desktop.
Save baig/c3bbc454c707f8ac31e8 to your computer and use it in GitHub Desktop.
#!/usr/bin/env runhaskell
import Text.Pandoc.JSON
import Text.Pandoc.Builder
main :: IO ()
main = toJSONFilter hideSlide
hideSlide :: Block -> Block
hideSlide (CodeBlock (_,(attr:_),_) str)
| attr == "hide"
= HorizontalRule
hideSlide b = b
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment