summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorJean-Philippe Lang <jp_lang@yahoo.fr>2014-04-26 07:02:45 +0000
committerJean-Philippe Lang <jp_lang@yahoo.fr>2014-04-26 07:02:45 +0000
commitd197203d79830f729d6dee41ff8fbc8625371dee (patch)
tree62eae8bb5c280e94848cd3b17a5da114d17dc8cb /lib
parent43c9d69bf251a033b2c6d6562e56e91a1442d3da (diff)
downloadredmine-d197203d79830f729d6dee41ff8fbc8625371dee.tar.gz
redmine-d197203d79830f729d6dee41ff8fbc8625371dee.zip
Set Redcarpet :no_intra_emphasis to true (#16669).
git-svn-id: http://svn.redmine.org/redmine/trunk@13105 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'lib')
-rw-r--r--lib/redmine/wiki_formatting/markdown/formatter.rb3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/redmine/wiki_formatting/markdown/formatter.rb b/lib/redmine/wiki_formatting/markdown/formatter.rb
index c340fc1ff..22c22c82b 100644
--- a/lib/redmine/wiki_formatting/markdown/formatter.rb
+++ b/lib/redmine/wiki_formatting/markdown/formatter.rb
@@ -127,7 +127,8 @@ module Redmine
:space_after_headers => true,
:tables => true,
:strikethrough => true,
- :superscript => true
+ :superscript => true,
+ :no_intra_emphasis => true
)
end
end