hugo-tufte/exampleSite/content/posts/blockquote.md

39 lines
858 B
Markdown
Raw Normal View History

2023-04-25 15:44:03 +02:00
---
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:
>
2023-04-25 15:44:03 +02:00
> ```sh
> return shell_exec("echo $input | $markdown_script");
> ```