-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy path.markdownlint.yml
More file actions
38 lines (30 loc) · 1.1 KB
/
.markdownlint.yml
File metadata and controls
38 lines (30 loc) · 1.1 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
# markdownlint configuration.
# For more information, see:
# https://github.com/DavidAnson/markdownlint#optionsconfig.
# Enable all rules.
default: true
line-length:
# Line length checking is not strict by default.
strict: true
line_length: 80
# Code blocks for examples are imported directly from the command output
# and do not have sensible max line length.
code_blocks: false
# Front matter title (shown in the menu and doccards) may differ from the one
# on the actual page.
single-title:
front_matter_title: ""
# Docusaurus uses custom {#some-title} syntax to define fragments (anchors), see:
# https://docusaurus.io/docs/next/markdown-features/toc#heading-ids
# Unfortunately, it is not compatible with the markdown linter yet.
link-fragments: false
# Do not always require language specifiers with fenced code blocks since they
# are not part of the Markdown spec.
fenced-code-language: false
# Allow inline HTML for MDX tab components.
no-inline-html:
allowed_elements:
- Tabs
- TabItem
# MDX files often start with imports, so disable first-line heading rule.
first-line-heading: false