diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2015-09-30 18:42:23 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2015-09-30 18:42:23 +0000 |
commit | dfa69b2eb0f85b6214af947c6e36b34c4a0e91d7 (patch) | |
tree | 61a1d2a40d2425ee41e6991911646e746b00e007 /lib/redmine | |
parent | 043264b6510cabc7b40b0c124483f9e486798858 (diff) | |
download | redmine-dfa69b2eb0f85b6214af947c6e36b34c4a0e91d7.tar.gz redmine-dfa69b2eb0f85b6214af947c6e36b34c4a0e91d7.zip |
Enables footnote support with Markdown (#16072).
Patch by Mischa The Evil.
git-svn-id: http://svn.redmine.org/redmine/trunk@14628 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'lib/redmine')
-rw-r--r-- | lib/redmine/wiki_formatting/markdown/formatter.rb | 3 |
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 17d94a19c..fdf17fe69 100644 --- a/lib/redmine/wiki_formatting/markdown/formatter.rb +++ b/lib/redmine/wiki_formatting/markdown/formatter.rb @@ -128,7 +128,8 @@ module Redmine :tables => true, :strikethrough => true, :superscript => true, - :no_intra_emphasis => true + :no_intra_emphasis => true, + :footnotes => true ) end end |