From 2e794fdf37dce8dd1ab5e385b5b3e38bef5f4364 Mon Sep 17 00:00:00 2001 From: fiddlosopher Date: Sun, 11 Mar 2007 00:19:15 +0000 Subject: Fixed bug in HTML email obfuscation using --strict mode. The problem is that the "href" function escapes &, so (href "l") is 'href="&#108;"'. Fixed by using primHtml for the whole link. Resolves issue 9. git-svn-id: https://pandoc.googlecode.com/svn/trunk@569 788f1e2b-df1e-0410-8736-df70ead52e1b --- src/Text/Pandoc/Writers/HTML.hs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'src/Text/Pandoc/Writers/HTML.hs') diff --git a/src/Text/Pandoc/Writers/HTML.hs b/src/Text/Pandoc/Writers/HTML.hs index 8c31f12da..f4861fe0b 100644 --- a/src/Text/Pandoc/Writers/HTML.hs +++ b/src/Text/Pandoc/Writers/HTML.hs @@ -106,7 +106,9 @@ obfuscateLink opts txt src = else text' ++ " (" ++ name ++ " at " ++ domain' ++ ")" in if writerStrictMarkdown opts - then anchor ! [href $ obfuscateString src'] << obfuscateString text' + then -- need to use primHtml or &'s are escaped to & in URL + primHtml $ "" ++ (obfuscateString text') ++ "" else (script ! [thetype "text/javascript"] $ primHtml ("\n