markdown-headings-space

Markdown headers must have a space after the hash characters.

Examples

error[markdown-headings-space]: Space missing in header
  |
5 | ##Banana
  |  ^ space required here
  |
6 | ####Mango
  |    ^ space required here
  |
			

Explanation

markdown-headings-space ensures that all headers have a space after the hash characters so that they are valid.

The lack of a space makes headers invalid, and they will not be rendered as such.