Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/joaooliveirapro/wcag-scan-go
- Owner: joaooliveirapro
- License: mit
- Created: 2024-12-17T23:41:50.000Z (about 2 months ago)
- Default Branch: main
- Last Pushed: 2024-12-22T20:07:59.000Z (about 1 month ago)
- Last Synced: 2024-12-22T20:28:53.884Z (about 1 month ago)
- Topics: golang, tf-idf, wcag2
- Language: Go
- Homepage:
- Size: 0 Bytes
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
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)