Skip to content

ivuorinen/wp-pa11y

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

16 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

WP-Pa11y

Run pa11y to each page on your sitemaps.

Installation instructions

As a global npm package

TBA

As a project npm dependency

TBA

git Clone

  1. Clone the repository to your chosen location (choose wisely, this will be the folder you will be running wp-pa11y from)
  2. Run npm install inside the folder
  3. Set up your sitemaps (see section "Configuration")
  4. Run the app (see section "Running the app")

Configuration

wp-pa11y reads sitemaps from wp-pa11y key in the project package.json file (examples below).

Using package.json

Add wp-pa11y array to your project root package.json and add sitemaps as objects.

{
    "name": "your-project",
    "version": "x.y.z",
    "dependencies": {},
    "devDependencies": {},
    "wp-pa11y": [
        {
            "url": "https://example.com/sitemap.xml",
            "config": {
                "hideElements": "#CybotCookiebotDialog"
            }
        },
        {
            "url": "https://subdomain.example.com/sitemap.xml",
            "config": {
                "hideElements": "#CybotCookiebotDialog",
                "ignore": [
                    "WCAG2AA.Principle4.Guideline4_1.4_1_2.H91.A.NoContent"
                ]
            }
        }
    ]
}

Running the app

Using wp-pa11y

Depending on installation method, the command might be node wp-pa11y.js or node node_modules/.bin/wp-pa11y.

Running without any options' app checks sitemaps and outputs reports to the CLI.

To see all available options and arguments run wp-pa11y --help.

From git clone (using make)

command Description
make html Generates HTML reports to ./output/{domain}/ folder.
make cli Outputs reports to cli.

Contributors

See up-to-date list of project contributors.

License

MIT License

About

wp-pa11y helps test sites by going through sitemaps and reports a11y problems

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • JavaScript 98.8%
  • Makefile 1.2%