diff options
author | Jesús <heckyel@hyperbola.info> | 2021-02-23 15:45:44 -0500 |
---|---|---|
committer | Jesús <heckyel@hyperbola.info> | 2021-02-23 15:45:44 -0500 |
commit | 4837da3367025671114b81150d2b65fd143ec32b (patch) | |
tree | 2e42300879f0e46bc996535aa532bf4e26e43b2d | |
parent | f5cb3b043608535f08df5a753445cf65339bb017 (diff) | |
download | w3c-validator-4837da3367025671114b81150d2b65fd143ec32b.tar.lz w3c-validator-4837da3367025671114b81150d2b65fd143ec32b.tar.xz w3c-validator-4837da3367025671114b81150d2b65fd143ec32b.zip |
[README.md]: update syntax
-rw-r--r-- | README.md | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -8,7 +8,7 @@ and CSS files and URLs to the [W3C CSS Validation Service](https://jigsaw.w3.org The script parses and reports the JSON results returned by validators. ## Requirements -- Python +- Python 3 - Curl - An Internet connection @@ -31,14 +31,14 @@ The script command syntax is: Examples: ```bash -$ w3c-validator tests/data/something-html5-file.html +$ python w3c-validator tests/data/something-html5-file.html validating: tests/data/something-html5-file.html ... error: line 822: The tt element is obsolete. Use CSS instead. ``` ```bash -$ w3c-validator https://www.methods.co.nz/asciidoc/layout1.css +$ python w3c-validator https://www.methods.co.nz/asciidoc/layout1.css validating: https://www.methods.co.nz/asciidoc/layout1.css ... ``` |