-
Notifications
You must be signed in to change notification settings - Fork 132
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1002 from finos/markdown-linting-api-spec
Markdown linting and spell checking documentation
- Loading branch information
Showing
49 changed files
with
620 additions
and
558 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
{ | ||
//Disabled as we often use manual H1 heading for reference pages, | ||
// where the markdown metadata is picked up as the top level heading | ||
"single-h1": false, | ||
//Many lines in md files are longer than 80 chars | ||
"line-length": false, | ||
//We have repeated headings, like 'Properties' or 'Fields' in reference docs. | ||
"no-duplicate-header": { | ||
"siblings_only": true | ||
}, | ||
"no-inline-html": { | ||
"allowed_elements": [ | ||
"Tabs", | ||
"TabItem" | ||
] | ||
}, | ||
"ul-style": { | ||
"style": "dash" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.