Skip to content

Latest commit

 

History

History
121 lines (98 loc) · 2.3 KB

File metadata and controls

121 lines (98 loc) · 2.3 KB
id MDS014
name blank-line-around-lists
status ready
description Lists must have a blank line before and after.
category list
nature style
maintainability
markdownlint
id name partial default
MD032
blanks-around-lists
false
true
rumdl
id name partial default
MD032
blanks-around-lists
false
true
mado
id name partial default
MD032
blanks-around-lists
false
false
panache
obsidian-linter
id name partial default
paragraph-blank-lines
paragraph-blank-lines
true
false
gomarklint
id name partial default
blanks-around-lists
blanks-around-lists
false
true

MDS014: blank-line-around-lists

Lists must have a blank line before and after.

Config

Enable:

rules:
  blank-line-around-lists: true

Disable:

rules:
  blank-line-around-lists: false

Examples

Bad

# Title

Content here.
- item one
- item two

Good

# Title

- item one
- item two

Content here.

Diagnostics

Message Condition
list should be preceded by a blank line Previous line is not blank
list should be followed by a blank line Next line is not blank

Meta-Information

  • ID: MDS014
  • Name: blank-line-around-lists
  • Status: ready
  • Default: enabled
  • Fixable: yes
  • Implementation: source
  • Category: list
  • markdownlint: MD032 (blanks-around-lists)
  • rumdl: MD032 (blanks-around-lists)
  • mado: MD032 (blanks-around-lists)
  • obsidian-linter: paragraph-blank-lines (partial)
  • gomarklint: blanks-around-lists