Stefan Dresselhaus
8376d6298b
- Split things into Library and Binary - Library has all functionality - Binarys are just wrapper like "main = toJsonFilter foo" - Documented most things - Created haddock-documentation - added documentation to repository
10 lines
195 B
Haskell
10 lines
195 B
Haskell
#!/usr/bin/env runhaskell
|
|
|
|
import Text.Pandoc.JSON
|
|
import Text.Pandoc.Generic (topDown)
|
|
|
|
import Text.Pandoc.Util.Filter.Cols
|
|
|
|
main :: IO ()
|
|
main = toJSONFilter (topDown cols :: Pandoc -> Pandoc)
|