Tags: blockquote, whitespace
Aliases: no-blanks-blockquote
This rule is triggered when two blockquote blocks are separated only by a blank line.
> This is a blockquote
> which is immediately followed by
> this blockquote.To fix this, there are a couple of options:
> This is a blockquote.
And Jimmy also said:
> This too is a blockquote.> This is a blockquote.
>
> This is the same blockquote.Some Markdown parsers will treat two blockquotes separated by one or more blank lines as the same blockquote, while others will treat them as separate blockquotes.
This rule is configurable and can be disabled:
[linters.severity]
no-blanks-blockquote = "off"Or set to warning:
[linters.severity]
no-blanks-blockquote = "warn"