blockquote(cite = {})
Instance Public methods
Generate a BlockQuote element as a string.
cite
can either be a string, give the URI for the source of the quoted text, or a hash,
giving all attributes of the element, or it can be omitted, in which case
the element has no attributes.
The body is provided by the passed-in no-argument block
blockquote("http://www.example.com/quotes/foo.html") { "Foo!" } #=> "<BLOCKQUOTE CITE=\"http://www.example.com/quotes/foo.html\">Foo!</BLOCKQUOTE>
Please login to continue.