Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/joaooliveirapro/wcag-scan-go

A standalone WCAG compliance checker and content site indexer built in Go
https://github.com/joaooliveirapro/wcag-scan-go

golang tf-idf wcag2

Last synced: 21 days ago
JSON representation

A standalone WCAG compliance checker and content site indexer built in Go

Awesome Lists containing this project

README

        

# wcag-scan-go
This app allows for quick scan of a website.

Features include:
- [x] Concurrency safe
```go
app := App{
Workers: 8 // Set number of workers
}
```
- [x] Regex pattern matching on URLs
```go
ExcludeRegex: []string{"/path/"} // Exlcude URLs that match to /path/
IncludeRegex: []string{"/path/"} // ONLY include URLs that match /path/
```
- [ ] Content search engine with [TF-IDF](https://en.wikipedia.org/wiki/Tf%E2%80%93idf) based content indexing
- [ ] Browser based GUI built using VueJS
- [ ] [WCAG 2.2 A and AA](https://www.w3.org/TR/WCAG22/) compliance check

# License
[The MIT License (MIT)](https://github.com/joaooliveirapro/wcag-scan-go/blob/main/LICENSE.md)