C.W.K.
Stream
Lesson 08 of 08 · published

Blockquotes, Horizontal Rules & Escaping

~10 min · markdown, blockquotes, escaping

Level 0Plaintext
0 XP0/64 lessons0/12 achievements
0/100 XP to next level100 XP to go0% complete

Quoting, dividing, and escaping

Blockquotes prefix lines with >. They can nest (>>) and can contain any Markdown — headings, lists, code blocks, even other blockquotes. Use them for citations, callouts, and quoted dialogue.

Horizontal rules are three or more -, *, or _ on a line by themselves. They produce an <hr> element. Spaces between the characters are allowed (- - -).

Escaping special characters

Precede any Markdown special character with a backslash to display it literally. The full set: \ ` * _ { } [ ] ( ) # + - . ! |. If you've ever typed 5*5*5 and gotten weird italics, this is your fix: 5\*5\*5.

HR vs front matter: three dashes (---) at the very top of a file is usually parsed as the start of YAML front matter, not as a horizontal rule. Put your first HR after at least one paragraph of content.

Code

Blockquotes (nested + with content)·markdown
> This is a blockquote.
> It can span multiple lines.
>
> Multiple paragraphs inside a quote.

> Nested blockquotes:
>> Second level
>>> Third level

> ## Heading inside a quote
> - List inside a quote
> - Works fine
Horizontal rules (six valid forms)·markdown
---
***
___

- - -
* * *
_ _ _
Escaping·markdown
\* Not italic \*
\# Not a heading
\[Not a link\](not-a-url)
\- Not a list item

Special characters: \ ` * _ { } [ ] ( ) # + - . ! |

External links

Exercise

Write a Markdown 'reading note' file: a quote in a blockquote, your two reactions as bullet points inside the same blockquote, an HR, and below it your own response paragraph. Force yourself to escape at least one literal asterisk in the response. This locks in three syntaxes at once.

Progress

Progress is local-only — sign in to sync across devices.
Spotted a bug or have feedback on this page?Report an Issue

Comments 0

🔔 Reply notifications (sign in)
Sign inPlease sign in to comment.

No comments yet — be the first.