xml: requested arrows and back-ticks.

beep
Daniel Birket 2021-08-23 21:26:03 -04:00 committed by Starbeamrainbowlabs
parent aa67236fc3
commit a9538950db
3 changed files with 3 additions and 3 deletions

View File

@ -1,6 +1,6 @@
# xml escape
> Escape special XML characters, e.g. `<a1>` -> `&lt;a1&gt;`.
> Escape special XML characters, e.g. `<a1>` `&lt;a1&gt;`.
> More information: <http://xmlstar.sourceforge.net/doc/xmlstarlet.pdf>.
- Escape special XML characters in a string:

View File

@ -15,7 +15,7 @@
`xml format --recover --noindent {{path/to/malformed.xml|URI}} > {{path/to/recovered.xml}}`
- Format an XML document from stdin, removing the DOCTYPE declaration:
- Format an XML document from stdin, removing the `DOCTYPE` declaration:
`cat {{path\to\input.xml}} | xml format --dropdtd > {{path/to/output.xml}}`

View File

@ -1,6 +1,6 @@
# xml unescape
> Unescape special XML characters, e.g. `&lt;a1&gt;` -> `<a1>`.
> Unescape special XML characters, e.g. `&lt;a1&gt;` `<a1>`.
> More information: <http://xmlstar.sourceforge.net/docs.php>.
- Unescape special XML characters from a string: