aboutsummaryrefslogtreecommitdiff
path: root/src/Text
diff options
context:
space:
mode:
authorJohn MacFarlane <jgm@berkeley.edu>2013-11-08 08:04:28 -0800
committerJohn MacFarlane <jgm@berkeley.edu>2013-11-08 08:04:28 -0800
commitfa1530285bad425771fc93d83aaf0d816ca31338 (patch)
treee609475319f65b05be34697740ef89a58d62c220 /src/Text
parent2efd0951d3d560a159f92df4730e2cee26978698 (diff)
parent01fed75b8f755bf4de3d4ec2b720e4dd9e66951a (diff)
downloadpandoc-fa1530285bad425771fc93d83aaf0d816ca31338.tar.gz
Merge pull request #1048 from minrk/svg
recognize svg tag in HTML Reader
Diffstat (limited to 'src/Text')
-rw-r--r--src/Text/Pandoc/Readers/HTML.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Text/Pandoc/Readers/HTML.hs b/src/Text/Pandoc/Readers/HTML.hs
index 80279bf61..d691c9878 100644
--- a/src/Text/Pandoc/Readers/HTML.hs
+++ b/src/Text/Pandoc/Readers/HTML.hs
@@ -557,7 +557,7 @@ blockHtmlTags = ["address", "article", "aside", "blockquote", "body", "button",
"noframes", "noscript", "object", "ol", "output", "p", "pre", "progress",
"section", "table", "tbody", "textarea", "thead", "tfoot", "ul", "dd",
"dt", "frameset", "li", "tbody", "td", "tfoot",
- "th", "thead", "tr", "script", "style", "video"]
+ "th", "thead", "tr", "script", "style", "svg", "video"]
-- We want to allow raw docbook in markdown documents, so we
-- include docbook block tags here too.