Docs
Keys
TokenIgnores
TokenIgnores
Learn define custom inline-level ignores in your Vale configuration.
Heads up!
TokenIgnores are only supported in Markdown, reStructuredText,
AsciiDoc, and Org Mode.iniStylesPath = styles [*.md] BasedOnStyles = Vale TokenIgnores = ($+[^\n$]+$+), (:math:`.*`)
TokenIgnores allow you to exclude certain inline-level sections of text that
don’t have an associated HTML tag that could be used with IgnoredScopes.
The idea is to write a regular expression that captures the entire token in the first grouping. See this regex101 session for a more thorough explanation.
On This Page