aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEmily O'Leary <lotusecho@ThinkLotus>2013-03-25 14:13:09 -0400
committerRodney Ewing <ewing.rj@gmail.com>2013-08-07 16:33:10 -0700
commit3cf4ae0c41618fca764b80c5888c2868b8be5829 (patch)
tree8660e3f5ae1dcf0a998fc12d677b91c7efce6acb
parentbb3299ce219d538cc2c3b0f41f535665fb901aff (diff)
downloadmediagoblin-3cf4ae0c41618fca764b80c5888c2868b8be5829.tar.lz
mediagoblin-3cf4ae0c41618fca764b80c5888c2868b8be5829.tar.xz
mediagoblin-3cf4ae0c41618fca764b80c5888c2868b8be5829.zip
Changed the target of the markdown links for opening in a new tab as suggested by joar.
-rw-r--r--mediagoblin/user_pages/forms.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/mediagoblin/user_pages/forms.py b/mediagoblin/user_pages/forms.py
index cb8acb36..ac8084c5 100644
--- a/mediagoblin/user_pages/forms.py
+++ b/mediagoblin/user_pages/forms.py
@@ -23,7 +23,7 @@ class MediaCommentForm(wtforms.Form):
_('Comment'),
[wtforms.validators.Required()],
description=_(u'You can use '
- u'<a href="http://daringfireball.net/projects/markdown/basics" target=new>'
+ u'<a href="http://daringfireball.net/projects/markdown/basics" target="_blank">'
u'Markdown</a> for formatting.'))
class ConfirmDeleteForm(wtforms.Form):
@@ -47,5 +47,5 @@ class MediaCollectForm(wtforms.Form):
collection_description = wtforms.TextAreaField(
_('Description of this collection'),
description=_("""You can use
- <a href="http://daringfireball.net/projects/markdown/basics">
+ <a href="http://daringfireball.net/projects/markdown/basics" target="_blank">
Markdown</a> for formatting."""))