Fixed: Links to other wiki pages in headings get corrupted (class attributes shown).

git-svn-id: http://redmine.rubyforge.org/svn/trunk@769 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Jean-Philippe Lang 2007-09-27 19:44:23 +00:00
parent 20aff7cc70
commit e1bb4a5baa
1 changed files with 4 additions and 2 deletions

View File

@ -47,7 +47,7 @@ module Redmine
if tag =~ /^h(\d)$/
@toc << [$1.to_i, content]
end
content = "<a name=\"#{@toc.length}-#{content}\" class=\"wiki-page\"></a>" + content
content = "<a name=\"#{@toc.length}\" class=\"wiki-page\"></a>" + content
textile_p(tag, atts, cite, content)
end
@ -61,7 +61,9 @@ module Redmine
div_class << ' right' if $1 == '>'
out = "<div class=\"#{div_class}\">"
@toc.each_with_index do |heading, index|
out << "<a href=\"##{index+1}-#{heading.last}\" class=\"heading#{heading.first}\">#{heading.last}</a>"
# remove wiki links from the item
toc_item = heading.last.gsub(/(\[\[|\]\])/, '')
out << "<a href=\"##{index+1}\" class=\"heading#{heading.first}\">#{toc_item}</a>"
end
out << '</div>'
out