summaryrefslogtreecommitdiff
path: root/exts
diff options
context:
space:
mode:
Diffstat (limited to 'exts')
-rw-r--r--exts/tsref.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/exts/tsref.py b/exts/tsref.py
index b4d2db40..68f94c27 100644
--- a/exts/tsref.py
+++ b/exts/tsref.py
@@ -57,7 +57,7 @@ class LinkingHtmlFormatter(HtmlFormatter):
cls = self._get_css_class(tok)
href = tok_getprop(tok, "href")
if href:
- value = '<a style="color:inherit" href="%s">%s</a>' % (href, value)
+ value = '<a style="color:inherit;text-decoration:underline" href="%s">%s</a>' % (href, value)
if cls is None or cls == "":
return value
return '<span class="%s">%s</span>' % (cls, value)