diff options
-rw-r--r-- | src/Text/Pandoc/SelfContained.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Text/Pandoc/SelfContained.hs b/src/Text/Pandoc/SelfContained.hs index 36be62f0a..ae44cd8cb 100644 --- a/src/Text/Pandoc/SelfContained.hs +++ b/src/Text/Pandoc/SelfContained.hs @@ -80,7 +80,7 @@ convertTags (t@(TagOpen tagname as):ts) rest <- convertTags ts return $ TagOpen tagname as' : rest where processAttribute (x,y) = - if x `elem` ["src", "data-src", "href", "poster", "data-background"] + if x `elem` ["src", "data-src", "href", "poster", "data-background-image"] then do enc <- getDataURI (fromAttrib "type" t) y return (x, enc) |