diff options
author | fiddlosopher <fiddlosopher@788f1e2b-df1e-0410-8736-df70ead52e1b> | 2007-03-04 07:40:22 +0000 |
---|---|---|
committer | fiddlosopher <fiddlosopher@788f1e2b-df1e-0410-8736-df70ead52e1b> | 2007-03-04 07:40:22 +0000 |
commit | 402016df28cb8cffbba31d0e66c81d22520b2778 (patch) | |
tree | 0747537f9a7fc97ee6e34ae3c86c30d0a27ec1f3 /src | |
parent | 21ba6b08f27838bffff457cf6adafd988615d818 (diff) | |
download | pandoc-402016df28cb8cffbba31d0e66c81d22520b2778.tar.gz |
Fixed bug in noscript part of email obfuscation:
& instead of &
git-svn-id: https://pandoc.googlecode.com/svn/trunk@557 788f1e2b-df1e-0410-8736-df70ead52e1b
Diffstat (limited to 'src')
-rw-r--r-- | src/Text/Pandoc/Writers/HTML.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Text/Pandoc/Writers/HTML.hs b/src/Text/Pandoc/Writers/HTML.hs index 6a1aaf18d..8c31f12da 100644 --- a/src/Text/Pandoc/Writers/HTML.hs +++ b/src/Text/Pandoc/Writers/HTML.hs @@ -113,7 +113,7 @@ obfuscateLink opts txt src = obfuscateString name ++ "';e=n+a+h;\n" ++ "document.write('<a h'+'ref'+'=\"ma'+'ilto'+':'+e+'\">'+" ++ linkText ++ "+'<\\/'+'a'+'>');\n// -->\n")) +++ - noscript << obfuscateString altText + noscript (primHtml $ obfuscateString altText) _ -> anchor ! [href src] $ inlineListToHtml opts txt -- malformed email -- | Obfuscate character as entity. |