summaryrefslogtreecommitdiff
path: root/src/Text/Pandoc/Readers/HTML.hs
diff options
context:
space:
mode:
authorRuqi <liruqi@gmail.com>2022-08-30 14:51:09 +0700
committerGitHub <noreply@github.com>2022-08-30 09:51:09 +0200
commit8b5fb5019897138c9e65c1c8ec73feaf341c3efa (patch)
tree96bef76af709e449b28eaeb681de50613baa81c9 /src/Text/Pandoc/Readers/HTML.hs
parentfecd3366d8d9850131c5b0a2cbab53c65a030405 (diff)
Mediawiki reader: Parse table cell with attribs, to support rowspan, colspan (#8231)
Diffstat (limited to 'src/Text/Pandoc/Readers/HTML.hs')
-rw-r--r--src/Text/Pandoc/Readers/HTML.hs1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/Text/Pandoc/Readers/HTML.hs b/src/Text/Pandoc/Readers/HTML.hs
index 4fb6028e4..4e2be9382 100644
--- a/src/Text/Pandoc/Readers/HTML.hs
+++ b/src/Text/Pandoc/Readers/HTML.hs
@@ -21,6 +21,7 @@ module Text.Pandoc.Readers.HTML ( readHtml
, isBlockTag
, isTextTag
, isCommentTag
+ , toAttr
) where
import Control.Applicative ((<|>))