An open API service indexing awesome lists of open source software.

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

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
----