diff options
author | John MacFarlane <jgm@berkeley.edu> | 2019-11-04 08:45:20 -0800 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2019-11-04 08:45:20 -0800 |
commit | bdc0f6cc9be3c40b5e582d29dfc7381e34b974e4 (patch) | |
tree | 7be57a8d0f64937a089aed561d21188380a27f53 /src | |
parent | bd2bd9b19d949f59a64358f756bf8b398a13db0f (diff) | |
download | pandoc-bdc0f6cc9be3c40b5e582d29dfc7381e34b974e4.tar.gz |
Removed an unnecessary unpack.
Diffstat (limited to 'src')
-rw-r--r-- | src/Text/Pandoc/Readers/HTML.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Text/Pandoc/Readers/HTML.hs b/src/Text/Pandoc/Readers/HTML.hs index c5abe0e15..697a3aa9d 100644 --- a/src/Text/Pandoc/Readers/HTML.hs +++ b/src/Text/Pandoc/Readers/HTML.hs @@ -652,7 +652,7 @@ inline = choice , pLink , pImage , pCode - , pCodeWithClass [(T.pack "samp","sample"),(T.pack "var","variable")] + , pCodeWithClass [("samp","sample"),("var","variable")] , pSpan , pMath False , pScriptMath |