Safe Haskell | None |
---|---|
Language | Haskell2010 |
Synopsis
- class PandocRaw m where
- type PandocRawConstraints m :: Constraint
- elPandocRaw :: PandocRawConstraints m => Format -> Text -> m ()
- elPandocRawSafe :: DomBuilder t m => Format -> Text -> m ()
Documentation
class PandocRaw m where Source #
Class to define how to render pandoc raw nodes
type PandocRawConstraints m :: Constraint Source #
The constraints required to render
elPandocRaw :: PandocRawConstraints m => Format -> Text -> m () Source #
Render a raw content of the given format TODO: Distinguish between inline vs block
Instances
PandocRaw m => PandocRaw (PostBuildT t m) Source # | |
Defined in Reflex.Dom.Pandoc.PandocRaw type PandocRawConstraints (PostBuildT t m) :: Constraint Source # elPandocRaw :: Format -> Text -> PostBuildT t m () Source # | |
PandocRaw m => PandocRaw (ReaderT a m) Source # | |
Defined in Reflex.Dom.Pandoc.PandocRaw type PandocRawConstraints (ReaderT a m) :: Constraint Source # | |
PandocRaw (StaticDomBuilderT t m) Source # | In a static builder, we accept whatever raw html that comes through. |
Defined in Reflex.Dom.Pandoc.PandocRaw type PandocRawConstraints (StaticDomBuilderT t m) :: Constraint Source # elPandocRaw :: Format -> Text -> StaticDomBuilderT t m () Source # |
elPandocRawSafe :: DomBuilder t m => Format -> Text -> m () Source #