/ .markdownlint.yaml
.markdownlint.yaml
1 # .markdownlint.yaml 2 3 # MD001: Heading levels should only increment by one level at a time 4 MD001: false 5 6 # MD004: Unordered list style - allow different styles in sublists 7 MD004: 8 style: sublist 9 10 # MD013: Line length 11 MD013: 12 line_length: 120 13 code_blocks: false 14 tables: false 15 16 # MD025: Multiple top-level headings allowed 17 MD025: false 18 19 # MD033: Inline HTML 20 MD033: 21 allowed_elements: [p, img]