From 273aa42900a0cd67ab60cc59217528362425f1f1 2014-03-21 01:35:21 From: Jean-Philippe Lang Date: 2014-03-21 01:35:21 Subject: [PATCH] Fixed: right-aligned table of contents (TOC) not working with markdown (#16236). git-svn-id: http://svn.redmine.org/redmine/trunk@12989 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- diff --git a/app/helpers/application_helper.rb b/app/helpers/application_helper.rb index 363653c..acb7ba9 100644 --- a/app/helpers/application_helper.rb +++ b/app/helpers/application_helper.rb @@ -978,19 +978,20 @@ module ApplicationHelper end end - TOC_RE = /

\{\{([<>]?)toc\}\}<\/p>/i unless const_defined?(:TOC_RE) + TOC_RE = /

\{\{((<|<)|(>|>))?toc\}\}<\/p>/i unless const_defined?(:TOC_RE) # Renders the TOC with given headings def replace_toc(text, headings) text.gsub!(TOC_RE) do + left_align, right_align = $2, $3 # Keep only the 4 first levels headings = headings.select{|level, anchor, item| level <= 4} if headings.empty? '' else div_class = 'toc' - div_class << ' right' if $1 == '>' - div_class << ' left' if $1 == '<' + div_class << ' right' if right_align + div_class << ' left' if left_align out = "