mirror of
https://github.com/ruby/ruby.git
synced 2025-08-16 05:59:00 +02:00
14 lines
251 B
Ruby
14 lines
251 B
Ruby
# frozen_string_literal: true
|
|
##
|
|
# A quoted section which contains markup items.
|
|
|
|
class RDoc::Markup::BlockQuote < RDoc::Markup::Raw
|
|
|
|
##
|
|
# Calls #accept_block_quote on +visitor+
|
|
|
|
def accept visitor
|
|
visitor.accept_block_quote self
|
|
end
|
|
|
|
end
|