Skip to content
This repository has been archived by the owner on May 19, 2023. It is now read-only.
/ vale-asciidoc Public archive

Vale package for validating Asciidoc markup

Notifications You must be signed in to change notification settings

rohennes/vale-asciidoc

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

This repo is deprecated. For latest updates for AsciiDoc and OpenShiftAsciiDoc rule sets see here: https://github.com/redhat-documentation/vale-at-red-hat/

Vale ruleset for AsciiDoc

This repo contains Vale rules to check for correct AsciiDoc syntax in AsciiDoc module files. These syntax rules are derived from Red Hat's Modular Docs Guidelines and OpenShift Docs Guidelines.

For Vale installation steps, see here: https://vale.sh/docs/vale-cli/installation/

NOTE: If you need Vale rules to lint grammar and accepted Red Hat terminology in AsciiDoc, see Vale at Red Hat.

Testing the AsciiDoc rule set

To test the AsciiDoc rule set, add a .vale.ini configuration file in your modules directory.

  1. Add a .vale.ini file to your /modules directory with the following content:
StylesPath = ../.vale/styles

MinAlertLevel = suggestion

Packages = https://github.com/rohennes/vale-asciidoc/releases/download/AsciiDoc/AsciiDoc.zip

[[!.]*.adoc]
BasedOnStyles = RedHat, AsciiDoc

Note: This is a separate vale.ini file that is designed for modules only - not assemblies. If you are using this with openshift-docs or any other repo, don't overwrite existing vale.ini files.

  1. Run vale sync in the modules directory.

Verification

To verify, run vale ls-config in your modules directory to check that the AsciiDoc package is installed.

Example output

{
"BlockIgnores": {},
"Checks": null,
"Formats": {},
"Asciidoctor": {},
...
"SBaseStyles": {
  "[!.]*.adoc": [
    "AsciiDoc"
  ]
...
}

Optional: Exclude the Vale configuration file from Git

To exclude the .vale.ini configuration file from Git, add the file to the list of ignored files in a global .gitignore file in your home directory.

  1. Add the following content to a .gitignore file in your home directory:

    modules/.vale.ini

  2. If you didn't have a .gitignore file previously in your home dir, you may need to make git aware of this global .gitignore file by running the following:

    git config --global core.excludesFile '~/.gitignore'

About

Vale package for validating Asciidoc markup

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages