summaryrefslogtreecommitdiff
path: root/src/Text/Pandoc/Writers/HTML.hs
diff options
context:
space:
mode:
authorfiddlosopher <fiddlosopher@788f1e2b-df1e-0410-8736-df70ead52e1b>2007-07-28 02:12:40 +0000
committerfiddlosopher <fiddlosopher@788f1e2b-df1e-0410-8736-df70ead52e1b>2007-07-28 02:12:40 +0000
commit9939b0f07ed871d091585b4820b309d087b4cb65 (patch)
tree7efb8238789f881d34fc0d485d4de07dfd73a0b5 /src/Text/Pandoc/Writers/HTML.hs
parentcf87eb854d1e64c673073c46e7b9544738bad95f (diff)
Make URLs and emails in autolinks appear as Code.
git-svn-id: https://pandoc.googlecode.com/svn/trunk@810 788f1e2b-df1e-0410-8736-df70ead52e1b
Diffstat (limited to 'src/Text/Pandoc/Writers/HTML.hs')
-rw-r--r--src/Text/Pandoc/Writers/HTML.hs14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/Text/Pandoc/Writers/HTML.hs b/src/Text/Pandoc/Writers/HTML.hs
index c860d73e6..afdfcf9e9 100644
--- a/src/Text/Pandoc/Writers/HTML.hs
+++ b/src/Text/Pandoc/Writers/HTML.hs
@@ -140,13 +140,13 @@ obfuscateLink opts text src =
(Just [name, domain]) ->
let domain' = substitute "." " dot " domain
at' = obfuscateChar '@'
- linkText = if src' == ("mailto:" ++ text')
- then "e"
- else "'" ++ text' ++ "'"
- altText = if src' == ("mailto:" ++ text')
- then name ++ " at " ++ domain'
- else text' ++ " (" ++ name ++ " at " ++
- domain' ++ ")" in
+ (linkText, altText) =
+ if "mailto:" `isPrefixOf` src' &&
+ text' == ("<code>" ++ drop 7 src' ++ "</code>")
+ then ("e", name ++ " at " ++ domain')
+ else ("'" ++ text' ++ "'",
+ text' ++ " (" ++ name ++ " at " ++
+ domain' ++ ")") in
if writerStrictMarkdown opts
then -- need to use primHtml or &'s are escaped to &amp; in URL
primHtml $ "<a href=\"" ++ (obfuscateString src')