https://github.com/pwright/vale-adoc-analysis
A vale package to analyse AsciiDoc
https://github.com/pwright/vale-adoc-analysis
Last synced: 3 months ago
JSON representation
A vale package to analyse AsciiDoc
- Host: GitHub
- URL: https://github.com/pwright/vale-adoc-analysis
- Owner: pwright
- License: mit
- Created: 2022-09-22T15:46:56.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2022-10-13T12:52:04.000Z (over 3 years ago)
- Last Synced: 2025-08-24T14:32:55.000Z (10 months ago)
- Size: 156 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.adoc
- License: LICENSE
Awesome Lists containing this project
README
# AdocReport
A vale package to analyse AsciiDoc.
Incorrectly coded AsciiDoc can be difficult to notice in complex repos.
This vale package might help.
--
For example, the coding for this block has an error, resulting in an incorrect rendering of the next heading.
-
Another thing this package reports is lack of alt text, which is important for accessibility.
.No alt text
image::image.png[]
.Some alt text
image::image.png[cup]
== Using this package
To use this package, include it in your `.vale.ini` file as follows:
----
Packages = https://github.com/pwright/vale-adoc-analysis/raw/main/styles/AdocReport.zip
[*.adoc]
BasedOnStyles = AdocReport
----