mirror of
https://github.com/ruby/ruby.git
synced 2025-09-15 08:33:58 +02:00
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
This commit is contained in:
parent
e80e14c788
commit
8e94bb29ae
9 changed files with 92 additions and 25 deletions
|
@ -23,14 +23,13 @@ module SM
|
|||
end
|
||||
|
||||
class ToFlow
|
||||
|
||||
LIST_TYPE_TO_HTML = {
|
||||
ListBase::BULLET => [ "<ul>", "</ul>" ],
|
||||
ListBase::NUMBER => [ "<ol>", "</ol>" ],
|
||||
ListBase::UPPERALPHA => [ "<ol>", "</ol>" ],
|
||||
ListBase::LOWERALPHA => [ "<ol>", "</ol>" ],
|
||||
ListBase::LABELED => [ "<dl>", "</dl>" ],
|
||||
ListBase::NOTE => [ "<table>", "</table>" ],
|
||||
SM::ListBase::BULLET => [ "<ul>", "</ul>" ],
|
||||
SM::ListBase::NUMBER => [ "<ol>", "</ol>" ],
|
||||
SM::ListBase::UPPERALPHA => [ "<ol>", "</ol>" ],
|
||||
SM::ListBase::LOWERALPHA => [ "<ol>", "</ol>" ],
|
||||
SM::ListBase::LABELED => [ "<dl>", "</dl>" ],
|
||||
SM::ListBase::NOTE => [ "<table>", "</table>" ],
|
||||
}
|
||||
|
||||
InlineTag = Struct.new(:bit, :on, :off)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue