Skip to content

Commit

Permalink
Addressed issues pointed out by Markdownlint
Browse files Browse the repository at this point in the history
Added Markdownlint configuration disabling a set of rules

- "first-line-h1": MD041 - First line in file should be a top level heading, ref: https://github.com/DavidAnson/markdownlint/blob/master/doc/Rules.md#md041---first-line-in-file-should-be-a-top-level-heading
- "no-duplicate-heading": MD024 - Multiple headings with the same content, ref: https://github.com/DavidAnson/markdownlint/blob/master/doc/Rules.md#md024---multiple-headings-with-the-same-content
- "html": MD033 - Inline HTML, ref: https://github.com/DavidAnson/markdownlint/blob/master/doc/Rules.md#md033---inline-html
- "line-length": MD013 - Line length, ref: https://github.com/DavidAnson/markdownlint/blob/master/doc/Rules.md#md013---line-length
- "blanks-around-headings": MD022 - Headings should be surrounded by blank lines, ref: https://github.com/DavidAnson/markdownlint/blob/master/doc/Rules.md#md022---headings-should-be-surrounded-by-blank-lines
  • Loading branch information
jonasbn committed Oct 6, 2018
1 parent c1ac458 commit 69f7cf1
Show file tree
Hide file tree
Showing 2 changed files with 67 additions and 48 deletions.
7 changes: 7 additions & 0 deletions .markdownlint.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"first-line-h1": false,
"no-duplicate-heading": false,
"html": false,
"line-length": false,
"blanks-around-headings": false
}
Loading

0 comments on commit 69f7cf1

Please sign in to comment.