-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.markdownlint.yml
More file actions
55 lines (38 loc) · 1.69 KB
/
Copy path.markdownlint.yml
File metadata and controls
55 lines (38 loc) · 1.69 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
default: true
# ── Disabled: not applicable to Hugo docs ──────────────────────────────────
# Line length — docs have long tables, code examples, and URLs
MD013: false
# Inline HTML — Hugo shortcodes ({{< callout >}}, {{% steps %}}) trigger this
MD033: false
# First line must be H1 — files start with YAML front matter
MD041: false
# Bare URLs — allowed in code blocks and examples
MD034: false
# Multiple H1s — Hugo steps/details shortcodes contain headings
MD025: false
# Blank lines around fences — common inside Hugo shortcode blocks
MD031: false
# Blank lines around lists — pervasive in existing content
MD032: false
# Multiple consecutive blank lines — style preference, not a bug
MD012: false
# Blank line inside blockquote — Hugo callout/details shortcodes trigger this
MD028: false
# Ordered list prefix style — 1/2/3 vs 1/1/1 is a style choice
MD029: false
# Emphasis used instead of heading — intentional in existing docs
MD036: false
# Code block language — desirable but too many pre-existing violations
MD040: false
# Headings surrounded by blank lines — pre-existing violations in some docs
MD022: false
# Heading levels increment by one — Hugo docs intentionally start at ### because
# h1/h2 are rendered by the theme template, not the content file
MD001: false
# Duplicate headings — only flag duplicates within the same section, not across
# different top-level sections (e.g. two separate "### Install" blocks are fine)
MD024:
siblings_only: true
# Table column style (pipe spacing/alignment) — overly pedantic, tables render
# correctly regardless of exact pipe spacing
MD060: false