Skip to content

Commit f99f5de

Browse files
codebytesCopilot
andcommitted
Fix markdownlint config for Marp slide decks
Disable rules that conflict with Marp presentation format: - MD025: Allow multiple h1 headings (each slide has its own h1) - MD026: Allow ! in headings (e.g. 'Thank you!') - MD034: Allow bare URLs (Mastodon handles) - MD060: Allow compact table pipe style Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
1 parent 6d1f399 commit f99f5de

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

.github/linters/.markdown-lint.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,11 +24,14 @@ MD007:
2424
MD013:
2525
line_length: 400 # Line length 80 is far too short
2626
MD024: false # Multiple headers with the same content
27+
MD025: false # Multiple h1s (Marp slides use h1 per slide)
2728
MD026:
28-
punctuation: ".,;:!。,;:" # List of not allowed
29+
punctuation: ".,;:。,;:" # Allow ! in headings (slides use "Thank you!")
2930
MD029: false # Ordered list item prefix
3031
MD033: false # Allow inline HTML
32+
MD034: false # Allow bare URLs (Mastodon handles etc.)
3133
MD036: false # Emphasis used instead of a heading
34+
MD060: false # Table column style (compact pipes in slides)
3235

3336
#################
3437
# Rules by tags #

0 commit comments

Comments
 (0)