1
0
mirror of https://github.com/funkypenguin/geek-cookbook/ synced 2025-12-11 08:46:21 +00:00
Files
geek-cookbook/.markdownlint.yaml
David Young 31be95b704 Fix (some) broken links
Signed-off-by: David Young <davidy@funkypenguin.co.nz>
2023-02-07 13:13:28 +13:00

31 lines
997 B
YAML

# What's this for? This file is used by the markdownlinting extension in VSCode, as well as the GitHub actions
# See all rules at https://github.com/DavidAnson/markdownlint/blob/main/doc/Rules.md
# Ignore line length
"MD013": false
# Allow multiple headings with the same content provided the headings are not "siblings"
"MD024":
"siblings_only": true
# We use different page yaml titles to markdown TOC level #1 heading, on purpose, for SEO
"MD025":
"front_matter_title": ""
# Permit hard tabs in code blocks, since we are likely re-pasting console output
"MD010":
"code_blocks": false
# Allow trailing punctuation in headings
"MD026": false
# We use fenced code blocks, but this test conflicts with the admonitions plugin we use, which relies
# on indentation (which is then falsely detected as a code block)
"MD038": false
"MD046": false
# We need inline HTML to embed YouTube videos
"MD033": false
# Allow the use of links based on our common-links snippets
"MD052": false