Outputs RDoc markup with vibrant ANSI color!
Methods
Class Public methods
Instance Public methods
accept_list_item_end(list_item)
Link
Overrides indent width to ensure output lines up correctly.
# File ../ruby/lib/rdoc/markup/to_ansi.rb, line 32 def accept_list_item_end list_item width = case @list_type.last when :BULLET then 2 when :NOTE, :LABEL then @res << "\n" unless res.length == 1 2 else bullet = @list_index.last.to_s @list_index[-1] = @list_index.last.succ bullet.length + 2 end @indent -= width end
accept_list_item_start(list_item)
Link
Adds coloring to note and label list items
# File ../ruby/lib/rdoc/markup/to_ansi.rb, line 51 def accept_list_item_start list_item bullet = case @list_type.last when :BULLET then '*' when :NOTE, :LABEL then attributes(list_item.label) + ":\n" else @list_index.last.to_s + '.' end case @list_type.last when :NOTE, :LABEL then @indent += 2 @prefix = bullet + (' ' * @indent) else @prefix = (' ' * @indent) + bullet.ljust(bullet.length + 1) width = bullet.gsub(/\e\[[\d;]*m/, '').length + 1 @indent += width end end