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
9 lines
180 B
Haskell
9 lines
180 B
Haskell
#!/usr/bin/env runhaskell
|
|
|
|
import Text.Pandoc.JSON
|
|
import Text.Pandoc.Walk
|
|
import Text.Pandoc.Util.Filter.Styling
|
|
|
|
main :: IO ()
|
|
main = toJSONFilter $ styling . walk inlineStyling
|