module Text.Pandoc.Lua.Marshal.MathType
( peekMathType
, pushMathType
) where
import HsLua
import Text.Pandoc.Definition (MathType)
peekMathType :: Peeker e MathType
peekMathType :: forall e. Peeker e MathType
peekMathType = Peeker e MathType
forall a e. Read a => Peeker e a
peekRead
pushMathType :: Pusher e MathType
pushMathType :: forall e. Pusher e MathType
pushMathType = String -> LuaE e ()
forall e. String -> LuaE e ()
pushString (String -> LuaE e ())
-> (MathType -> String) -> MathType -> LuaE e ()
forall b c a. (b -> c) -> (a -> b) -> a -> c
. MathType -> String
forall a. Show a => a -> String
show