Skip to content

Latest commit

 

History

History
74 lines (52 loc) · 789 Bytes

File metadata and controls

74 lines (52 loc) · 789 Bytes
id MDS005
name no-duplicate-headings
status ready
description No two headings should have the same text.

MDS005: no-duplicate-headings

No two headings should have the same text.

  • ID: MDS005
  • Name: no-duplicate-headings
  • Status: ready
  • Default: enabled
  • Fixable: no
  • Implementation: source
  • Category: heading

Config

Enable:

rules:
  no-duplicate-headings: true

Disable:

rules:
  no-duplicate-headings: false

Examples

Bad

# Title

## Section

## Section

Good

# Title

## Section One

Body one.

## Section Two

Body two.