Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Better support for mkdocs on markdownlint #43

Merged
merged 1 commit into from
Jun 22, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
35 changes: 26 additions & 9 deletions .trunk/configs/.markdownlint.yaml
Original file line number Diff line number Diff line change
@@ -1,10 +1,27 @@
# Autoformatter friendly markdownlint config (all formatting rules disabled)
---
default: true
blank_lines: false
bullet: false
html: false
indentation: false
line_length: false
spaces: false
url: false
whitespace: false

MD013:
# Include code blocks
code_blocks: false
# Include tables
tables: false

MD033:
# Allowed elements
allowed_elements:
- p

# to hard to support in mkdocs-material
MD046: false

# As url are handled by magiclink plugin
# no need to keep ensuring that they are properly formatted
MD034: false

MD007:
# Indentation size
indent: 2

MD026:
punctuation: ".,;!"
Loading