1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

Fix problem in ri formatting if heading contains markup

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@7692 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
dave 2004-12-31 05:12:37 +00:00
parent 07ca1240f2
commit 0eaf4872a6
3 changed files with 37 additions and 9 deletions

View file

@ -113,7 +113,7 @@ module SM
end
def accept_heading(am, fragment)
@res << Flow::H.new(fragment.head_level, am.flow(fragment.txt))
@res << Flow::H.new(fragment.head_level, convert_flow(am.flow(fragment.txt)))
end