forked from mirrors/hugo-tufte
38 lines
858 B
Markdown
38 lines
858 B
Markdown
---
|
|
author: Hiro Protagonist
|
|
date: '2015-01-19T23:57:58-08:00'
|
|
hasMath: false
|
|
title: Blockquotes
|
|
---
|
|
|
|
Below is a blockquote.
|
|
|
|
> 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.
|
|
|
|
<!--more-->
|
|
|
|
Now we have nested blockquotes.
|
|
|
|
> This is the first level of quoting.
|
|
>
|
|
> > This is nested blockquote.
|
|
>
|
|
> Back to the first level.
|
|
|
|
And finally a blockquote with some markdown.
|
|
|
|
> ## This is a header.
|
|
>
|
|
> 1. This is the first list item.
|
|
> 2. This is the second list item.
|
|
>
|
|
> Here's some example code:
|
|
>
|
|
> ```sh
|
|
> return shell_exec("echo $input | $markdown_script");
|
|
> ```
|