Blockquotes
How to use blockquotes.
# Indentation
Always separate the marker >
from the actual content using a single space.
remark-lint: blockquote-indentation (opens new window)
👍 Correct code for this rule:
> One
👎 Incorrect code for this rule:
>One
> One
# Multi line
Use a greater than
sign (>
) for every line, including wrapped.
remark-lint: no-blockquote-without-marker (opens new window)
👍 Correct code for this rule:
> One
> Two
> The summer is awesome!
> It is home for many beautiful events.
👎 Incorrect code for this rule:
> One
Two
> Summer is awesome. It is a beautiful
time of the year.