I am using the Symfony CMS and it uses Markdown for article writing. I need to do a blockquote of a quote from Benjamin Franklin and would like to have the quote followed by a citation beneath it, but right now all it does is blockquote the whole line. How does one do this in markdown syntax?
Markdown has no dedicated citation syntax.
Your best bet is something like this:
> Quote here.
>
> -- <cite>Benjamin Franklin</cite>
which results in:
Quote here.
-- Benjamin Franklin