From 8e94bb29ae5c33d988cba29f130ba0d0a7276b00 Mon Sep 17 00:00:00 2001 From: dave Date: Mon, 30 Aug 2004 14:22:26 +0000 Subject: ri now merges the documentation if it finds the same class in multiple places git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@6838 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- lib/rdoc/markup/simple_markup/fragments.rb | 2 +- lib/rdoc/markup/simple_markup/to_flow.rb | 13 ++++++------- 2 files changed, 7 insertions(+), 8 deletions(-) (limited to 'lib/rdoc/markup') diff --git a/lib/rdoc/markup/simple_markup/fragments.rb b/lib/rdoc/markup/simple_markup/fragments.rb index 83388fcc0b..6ca06382ab 100644 --- a/lib/rdoc/markup/simple_markup/fragments.rb +++ b/lib/rdoc/markup/simple_markup/fragments.rb @@ -1,5 +1,5 @@ require 'rdoc/markup/simple_markup/lines.rb' -require 'rdoc/markup/simple_markup/inline.rb' +#require 'rdoc/markup/simple_markup/to_flow.rb' module SM diff --git a/lib/rdoc/markup/simple_markup/to_flow.rb b/lib/rdoc/markup/simple_markup/to_flow.rb index 4718cfaaf6..401703a72a 100644 --- a/lib/rdoc/markup/simple_markup/to_flow.rb +++ b/lib/rdoc/markup/simple_markup/to_flow.rb @@ -23,14 +23,13 @@ module SM end class ToFlow - LIST_TYPE_TO_HTML = { - ListBase::BULLET => [ "" ], - ListBase::NUMBER => [ "
    ", "
" ], - ListBase::UPPERALPHA => [ "
    ", "
" ], - ListBase::LOWERALPHA => [ "
    ", "
" ], - ListBase::LABELED => [ "
", "
" ], - ListBase::NOTE => [ "", "
" ], + SM::ListBase::BULLET => [ "" ], + SM::ListBase::NUMBER => [ "
    ", "
" ], + SM::ListBase::UPPERALPHA => [ "
    ", "
" ], + SM::ListBase::LOWERALPHA => [ "
    ", "
" ], + SM::ListBase::LABELED => [ "
", "
" ], + SM::ListBase::NOTE => [ "", "
" ], } InlineTag = Struct.new(:bit, :on, :off) -- cgit v1.2.3