mdsmith
Esc
    v0.52.0 GitHub
    MDS014 list ready

    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

    MessageCondition
    list should be preceded by a blank linePrevious line is not blank
    list should be followed by a blank lineNext line is not blank

    # Meta-Information