Add MD033 with tests, rename test file.

This commit is contained in:
David Anson 2015-04-13 08:47:15 -07:00
parent 1da7064094
commit 495fbac6fd
9 changed files with 49 additions and 5 deletions

View file

@ -682,3 +682,19 @@ items with hanging indents are okay:
* This is
okay
## MD033 - Inline HTML
Tags: html
This rule is triggered whenever raw HTML is used in a markdown document:
<h1>Inline HTML header</h1>
To fix this, use 'pure' markdown instead of including raw HTML:
# Markdown header
Rationale: Raw HTML is allowed in markdown, but this rule is included for
those who want their documents to only include "pure" markdown, or for those
who are rendering markdown documents in something other than HTML.