Docs
Formats
Org
Org
Learn how Vale handles Org content.
Org support is built in. The supported extension is .org
.
By default, Vale ignores:
- Code blocks.
- Literal examples.
- Code and verbatim strings.
- URLs: See URL handling for more information.
Comments
Vale supports comment-based configuration in Org files:
Turn Vale off entirely:
orgCopy # vale off This text will be ignored. # vale on
Turn off a specific rule:
orgCopy # vale Style.Redundancy = NO This is some text ACT test # vale Style.Redundancy = YES
Turn off specific match(es) within a rule:
orgCopy # vale Style.Redundancy["ACT test","OTHER"] = NO This is some text ACT test # vale Style.Redundancy["ACT test","OTHER"] = YES
Turn on or off specific styles:
orgCopy # vale StyleName1 = YES # vale StyleName2 = NO
Set styles (enabling them and switching off any other styles):
orgCopy # vale style = StyleName1 # vale styles = StyleName1, StyleName2
On This Page