Update cheatsheets

This commit is contained in:
ivuorinen
2025-05-04 00:21:53 +00:00
parent 921cbd312c
commit 968390f769
86 changed files with 291 additions and 212 deletions

View File

@@ -10,19 +10,19 @@ source: https://github.com/tldr-pages/tldr.git
- Validate one or more XML documents for well-formedness only:
`xml validate {{path/to/input1.xml|URI}} {{input2.xml ...}}`
`xml validate {{path/to/input1.xml|URI1 path/to/input2.xml|URI2 ...}}`
- Validate one or more XML documents against a Document Type Definition (DTD):
`xml validate --dtd {{path/to/schema.dtd}} {{path/to/input1.xml|URI}} {{input2.xml ...}}`
`xml validate --dtd {{path/to/schema.dtd}} {{path/to/input1.xml|URI1 path/to/input2.xml|URI2 ...}}`
- Validate one or more XML documents against an XML Schema Definition (XSD):
`xml validate --xsd {{path/to/schema.xsd}} {{path/to/input1.xml|URI}} {{input2.xml ...}}`
`xml validate --xsd {{path/to/schema.xsd}} {{path/to/input1.xml|URI1 path/to/input2.xml|URI2 ...}}`
- Validate one or more XML documents against a Relax NG schema (RNG):
`xml validate --relaxng {{path/to/schema.rng}} {{path/to/input1.xml|URI}} {{input2.xml ...}}`
`xml validate --relaxng {{path/to/schema.rng}} {{path/to/input1.xml|URI1 path/to/input2.xml|URI2 ...}}`
- Display help: