Commonmark.Pandoc
newtype Cm b a Source #
Constructors
Fields
Defined in Commonmark.Pandoc
Methods
fmap :: (a -> b0) -> Cm b a -> Cm b b0 #
(<$) :: a -> Cm b b0 -> Cm b a #
showsPrec :: Int -> Cm b a -> ShowS #
show :: Cm b a -> String #
showList :: [Cm b a] -> ShowS #
(<>) :: Cm b a -> Cm b a -> Cm b a #
sconcat :: NonEmpty (Cm b a) -> Cm b a #
stimes :: Integral b0 => b0 -> Cm b a -> Cm b a #
mempty :: Cm b a #
mappend :: Cm b a -> Cm b a -> Cm b a #
mconcat :: [Cm b a] -> Cm b a #
lineBreak :: Cm b Inlines Source #
softBreak :: Cm b Inlines Source #
str :: Text -> Cm b Inlines Source #
entity :: Text -> Cm b Inlines Source #
escapedChar :: Char -> Cm b Inlines Source #
emph :: Cm b Inlines -> Cm b Inlines Source #
strong :: Cm b Inlines -> Cm b Inlines Source #
link :: Text -> Text -> Cm b Inlines -> Cm b Inlines Source #
image :: Text -> Text -> Cm b Inlines -> Cm b Inlines Source #
code :: Text -> Cm b Inlines Source #
rawInline :: Format -> Text -> Cm b Inlines Source #
ranged :: SourceRange -> Cm () Inlines -> Cm () Inlines Source #
ranged :: SourceRange -> Cm () Blocks -> Cm () Blocks Source #
ranged :: SourceRange -> Cm SourceRange Inlines -> Cm SourceRange Inlines Source #
ranged :: SourceRange -> Cm SourceRange Blocks -> Cm SourceRange Blocks Source #
addAttributes :: Attributes -> Cm a Inlines -> Cm a Inlines Source #
addAttributes :: Attributes -> Cm a Blocks -> Cm a Blocks Source #
toPlainText :: Cm a b -> Text Source #
superscript :: Cm a Inlines -> Cm a Inlines Source #
subscript :: Cm a Inlines -> Cm a Inlines Source #
strikethrough :: Cm a Inlines -> Cm a Inlines Source #
singleQuoted :: Cm b Inlines -> Cm b Inlines Source #
doubleQuoted :: Cm b Inlines -> Cm b Inlines Source #
inlineMath :: Text -> Cm b Inlines Source #
displayMath :: Text -> Cm b Inlines Source #
emoji :: Text -> Text -> Cm b Inlines Source #
div_ :: Cm a Blocks -> Cm a Blocks Source #
spanWith :: Attributes -> Cm a Inlines -> Cm a Inlines Source #
paragraph :: Cm a Inlines -> Cm a Blocks Source #
plain :: Cm a Inlines -> Cm a Blocks Source #
thematicBreak :: Cm a Blocks Source #
blockQuote :: Cm a Blocks -> Cm a Blocks Source #
codeBlock :: Text -> Text -> Cm a Blocks Source #
heading :: Int -> Cm a Inlines -> Cm a Blocks Source #
rawBlock :: Format -> Text -> Cm a Blocks Source #
referenceLinkDefinition :: Text -> (Text, Text) -> Cm a Blocks Source #
list :: ListType -> ListSpacing -> [Cm a Blocks] -> Cm a Blocks Source #
taskList :: ListType -> ListSpacing -> [(Bool, Cm a Blocks)] -> Cm a Blocks Source #
pipeTable :: [ColAlignment] -> [Cm a Inlines] -> [[Cm a Inlines]] -> Cm a Blocks Source #
footnote :: Int -> Text -> Cm a Blocks -> Cm a Blocks Source #
footnoteList :: [Cm a Blocks] -> Cm a Blocks Source #
footnoteRef :: Text -> Text -> Cm a Blocks -> Cm a Inlines Source #
definitionList :: ListSpacing -> [(Cm a Inlines, [Cm a Blocks])] -> Cm a Blocks Source #