> This is a blockquote with two paragraphs. Lorem ipsum dolor sit amet, > consectetuer adipiscing elit. Aliquam hendrerit mi posuere lectus. > Vestibulum enim wisi, viverra nec, fringilla in, laoreet vitae, risus. > > Donec sit amet nisl. Aliquam semper ipsum sit amet velit. Suspendisse > id sem consectetuer libero luctus adipiscing.
is equivalent to:
and:
Ordered lists use numbers followed by periods:
If you instead wrote the list in Markdown like this:
or even:
Links
This is an example inline link.
This link has no title attribute.
See my About page for details.
This is [an example][id] reference-style link.
[id]: http://example.com/ "Optional Title Here"
That is:
* Square brackets containing the link identifier (optionally indented from the left margin using up to three spaces);
* followed by a colon;
* followed by one or more spaces (or tabs);
* followed by the URL for the link;
* optionally followed by a title attribute for the link, enclosed in double or single quotes, or enclosed in parentheses.