1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-03-28 21:16:20 +01:00

xml: add pages (incomplete: sub-command templates only)

This commit is contained in:
Daniel Birket 2021-08-14 18:17:52 -04:00 committed by Starbeamrainbowlabs
parent e87a65cc7d
commit 67f0a9202f
13 changed files with 121 additions and 0 deletions

View file

@ -0,0 +1,8 @@
# xml-canonic
> XMLStarlet toolkit: Make XML documents canonical.
> More information: <https://http://xmlstar.sourceforge.net/doc/xmlstarlet.pdf>.
- Display help for `canonic` subcommand:
`xml canonic --help`

8
pages/common/xml-edit.md Normal file
View file

@ -0,0 +1,8 @@
# xml-edit
> XMLStarlet toolkit: Edit an XML document.
> More information: <https://http://xmlstar.sourceforge.net/doc/xmlstarlet.pdf>.
- Display help for `edit` subcommand:
`xml edit --help`

View file

@ -0,0 +1,8 @@
# xml-elements
> XMLStarlet toolkit: Diaplay element structure of an XML document.
> More information: <https://http://xmlstar.sourceforge.net/doc/xmlstarlet.pdf>.
- Display help for `elements` subcommand:
`xml elements --help`

View file

@ -0,0 +1,8 @@
# xml-escape
> XMLStarlet toolkit: Escape special XML characters.
> More information: <https://http://xmlstar.sourceforge.net/doc/xmlstarlet.pdf>.
- Display help for `escape` subcommand:
`xml escape --help`

View file

@ -0,0 +1,8 @@
# xml-format
> XMLStarlet toolkit: Format an XML document.
> More information: <https://http://xmlstar.sourceforge.net/doc/xmlstarlet.pdf>.
- Display help for `format` subcommand:
`xml format --help`

8
pages/common/xml-list.md Normal file
View file

@ -0,0 +1,8 @@
# xml-list
> XMLStarlet toolkit: List a directory as XML.
> More information: <https://http://xmlstar.sourceforge.net/doc/xmlstarlet.pdf>.
- Display help for `list` subcommand:
`xml list --help`

8
pages/common/xml-p2x.md Normal file
View file

@ -0,0 +1,8 @@
# xml-p2x
> XMLStarlet toolkit: Convert a PYX document to XML format. (ESIS - ISO 8879).
> More information: <https://http://xmlstar.sourceforge.net/doc/xmlstarlet.pdf>.
- Display help for `p2x` subcommand:
`xml p2x --help`

8
pages/common/xml-pyx.md Normal file
View file

@ -0,0 +1,8 @@
# xml-pyx
> XMLStarlet toolkit: Convert XML documents to PYX format. (ESIS - ISO 8879).
> More information: <https://http://xmlstar.sourceforge.net/doc/xmlstarlet.pdf>.
- Display help for `pyx` subcommand:
`xml pyx --help`

View file

@ -0,0 +1,8 @@
# xml-select
> XMLStarlet toolkit: Select from XML documents.
> More information: <https://http://xmlstar.sourceforge.net/doc/xmlstarlet.pdf>.
- Display help for `select` subcommand:
`xml select --help`

View file

@ -0,0 +1,8 @@
# xml-transform
> XMLStarlet toolkit: Transform XML documents using XSLT.
> More information: <https://http://xmlstar.sourceforge.net/doc/xmlstarlet.pdf>.
- Display help for `transform` subcommand:
`xml transform --help`

View file

@ -0,0 +1,8 @@
# xml-edit
> XMLStarlet toolkit: Un-escape special XML characters.
> More information: <https://http://xmlstar.sourceforge.net/doc/xmlstarlet.pdf>.
- Display help for `unescape` subcommand:
`xml escape --help`

View file

@ -0,0 +1,8 @@
# xml-validate
> XMLStarlet toolkit: Validate XML documents.
> More information: <https://http://xmlstar.sourceforge.net/doc/xmlstarlet.pdf>.
- Display help for `validate` subcommand:
`xml validate --help`

25
pages/common/xml.md Normal file
View file

@ -0,0 +1,25 @@
# xml
> XMLStarlet toolkit: Query / Edit / Check / Transform XML documents.
> Subcommands: `edit`, `select`, `transform`, `validate`, `format`, `elements`, `canonic`, `list`, `escape`, `unescape`, `pyx`, or `p2x`.
> More information: <https://http://xmlstar.sourceforge.net/doc/xmlstarlet.pdf>.
- Execute a subcommand:
`xml {{subcommand}} {{options}} {{xml-file-or-uri}}`
- Execute a subcommand, redirecting output to a file:
`xml {{subcommand}} {{options}} {{xml-file-or-uri}} >{{path/to/output}}`
- Display help for a subcommand:
`xml {{subcommand}} --help`
- Display general help:
`xml --help`
- Display version:
`xml --version`