mirror of
https://github.com/simonmichael/hledger.git
synced 2024-11-08 07:09:28 +03:00
13 lines
271 B
Haskell
Executable File
13 lines
271 B
Haskell
Executable File
#!/usr/bin/env stack
|
|
{- stack runghc --verbosity info --package pandoc-types -}
|
|
|
|
import Text.Pandoc.JSON
|
|
|
|
main :: IO ()
|
|
main = toJSONFilter dropHtmlInlines
|
|
|
|
dropHtmlInlines :: Inline -> Inline
|
|
dropHtmlInlines (RawInline (Format "html") _) = Str ""
|
|
dropHtmlInlines x = x
|
|
|