print comment('this creates one big blockquote');
print blockquote(
{-cite => 'http://www.example.com/biblio'},
'The quick fox jumps over the lazy dog.',
br(),
strong('See citation for details')
);
####
print comment('this creates two smaller blockquotes');
print blockquote(
{-cite => 'http://www.example.com/biblio'},
[
'The quick fox jumps over the lazy dog.',
strong('See citation for details')
]
);
####
The quick fox jumps over the lazy dog.
See citation for details
The quick fox jumps over the lazy dog.
See citation for details