Markdown

Learn how Vale handles Markdown content.

GitHub-Flavored Markdownarrow-up-right support is built in. The supported extensions are .md, .mdown, .markdown, and .markdn.

By default, Vale ignores:

  • Indented blocks: Blocks starting with four or more spaces.

  • Fenced blocks: Blocks surrounded by three or more backticks.

  • Code spans: Text surrounded by backticks.

  • URLs: See URL handlingarrow-up-right for more information.

Vale supports comment-based configuration in Markdown files:

  • Turn Vale off entirely:

<!-- vale off -->

This text will be ignored.

<!-- vale on -->
  • Turn off a specific rule:

<!-- vale Style.Redundancy = NO -->

This is some text ACT test

<!-- vale Style.Redundancy = YES -->
  • Turn off specific match(es) within a rule:

  • Turn on or off specific styles:

  • Set styles (enabling them and switching off any other styles):

Front Matter AsciiDoc