diff options
Diffstat (limited to 'src/Text/Pandoc')
-rw-r--r-- | src/Text/Pandoc/Parsing.hs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/Text/Pandoc/Parsing.hs b/src/Text/Pandoc/Parsing.hs index 8bc042e28..391131338 100644 --- a/src/Text/Pandoc/Parsing.hs +++ b/src/Text/Pandoc/Parsing.hs @@ -863,6 +863,7 @@ data ParserState = ParserState -- roles), 3) Source language annotation for code (could be used to -- annotate role classes too). stateCaption :: Maybe Inlines, -- ^ Caption in current environment + stateInHtmlBlock :: Maybe String, -- ^ Tag type of HTML block being parsed stateWarnings :: [String] -- ^ Warnings generated by the parser } @@ -941,6 +942,7 @@ defaultParserState = stateRstDefaultRole = "title-reference", stateRstCustomRoles = M.empty, stateCaption = Nothing, + stateInHtmlBlock = Nothing, stateWarnings = []} -- | Succeed only if the extension is enabled. |