From 033c85e4579d525247bf043c97aaa5998bbcf494 Mon Sep 17 00:00:00 2001 From: dave Date: Fri, 31 Dec 2004 05:12:37 +0000 Subject: Fix problem in ri formatting if heading contains markup git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@7692 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- lib/rdoc/markup/simple_markup/to_flow.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/rdoc/markup') diff --git a/lib/rdoc/markup/simple_markup/to_flow.rb b/lib/rdoc/markup/simple_markup/to_flow.rb index 401703a72..048e71abc 100644 --- a/lib/rdoc/markup/simple_markup/to_flow.rb +++ b/lib/rdoc/markup/simple_markup/to_flow.rb @@ -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 -- cgit