diff options
Diffstat (limited to 'src/Text/Pandoc/Lua/Marshaling.hs')
-rw-r--r-- | src/Text/Pandoc/Lua/Marshaling.hs | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/src/Text/Pandoc/Lua/Marshaling.hs b/src/Text/Pandoc/Lua/Marshaling.hs new file mode 100644 index 000000000..cc0451c09 --- /dev/null +++ b/src/Text/Pandoc/Lua/Marshaling.hs @@ -0,0 +1,16 @@ +{- | + Module : Text.Pandoc.Lua.Marshaling + Copyright : © 2012-2019 John MacFarlane + © 2017-2019 Albert Krewinkel + License : GNU GPL, version 2 or above + + Maintainer : Albert Krewinkel <tarleb+pandoc@moltkeplatz.de> + Stability : alpha + +Lua marshaling (pushing) and unmarshaling (peeking) instances. +-} +module Text.Pandoc.Lua.Marshaling () where + +import Text.Pandoc.Lua.Marshaling.AST () +import Text.Pandoc.Lua.Marshaling.CommonState () +import Text.Pandoc.Lua.Marshaling.ReaderOptions () |