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