aboutsummaryrefslogtreecommitdiff
path: root/src/Text/Pandoc/Lua/SharedInstances.hs
AgeCommit message (Collapse)AuthorFilesLines
2017-04-26Lua module: provide simple `read` format parserAlbert Krewinkel1-0/+10
A single `read` function parsing pandoc-supported formats is added to the module. This is simpler and more convenient than the previous method of exposing all reader functions individually.
2017-04-14Avoid repeating StackValue instances definitionsAlbert Krewinkel1-0/+106
The lua filters and custom lua writer system defined very similar StackValue instances for strings and tuples. These instance definitions are extracted to a separate module to enable sharing.