parsing question - lists and blockquotes
A. Pagaltzis
pagaltzis at gmx.de
Thu Jun 8 21:11:24 EDT 2006
* Ben Wilson <dausha at gmail.com> [2006-06-09 01:00]:
> When is there a need for a blockquote within a list? I don't
> think I've encountered this condition "in the wild," so I was
> curious of actual examples.
I’ve used them when I used in numbered lists with multi-paragraph
list items to outline a line of argument, or to outline steps in
a chain of instructions where I quoted bits from source code or
configuration file.
> Also, I generally put a blank line after headings. Does this
> help remedy the problem?
Headlines are matched entirely independently of any blank lines
surrounding them. The following Markdown source:
Para.
# Head
Para.
will result in the following HTML:
<p>Para.</p>
<h1>Head</h1>
<p>Para.</p>
Regards,
--
Aristotle Pagaltzis // <http://plasmasturm.org/>
More information about the Markdown-Discuss
mailing list