Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions manuscript/chapter3.md
Original file line number Diff line number Diff line change
Expand Up @@ -258,22 +258,22 @@ Blockquotes can contain multiple paragraphs. Add a `>` on the blank lines betwee

{title="Markdown"}
~~~~~~~
> This the first paragraph.
> This is the first paragraph.
>
> And this is the second paragraph.
~~~~~~~

{title="HTML", lang=html}
~~~~~~~
<blockquote>
<p>This the first paragraph.</p>
<p>This is the first paragraph.</p>
<p>And this is the second paragraph.</p>
</blockquote>
~~~~~~~

The rendered output looks like this:

> This the first paragraph.
> This is the first paragraph.
>
> And this is the second paragraph.

Expand All @@ -283,15 +283,15 @@ Blockquotes can be nested. Add a `>>` in front of the paragraph you want to nest

{title="Markdown"}
~~~~~~~
> This the first paragraph.
> This is the first paragraph.
>
>> And this is the nested paragraph.
~~~~~~~

{title="HTML", lang=html}
~~~~~~~
<blockquote>
<p>This the first paragraph.</p>
<p>This is the first paragraph.</p>
<blockquote>
<p>And this is the nested paragraph.</p>
</blockquote>
Expand All @@ -300,7 +300,7 @@ Blockquotes can be nested. Add a `>>` in front of the paragraph you want to nest

The rendered output looks like this:

> This the first paragraph.
> This is the first paragraph.
>
>> And this is the nested paragraph.

Expand Down