2021-12-21 04:02:07 +00:00
|
|
|
# XML
|
|
|
|
|
2021-12-21 05:52:54 +00:00
|
|
|
Encode and decode to and from XML. Whitespace is not conserved for round trips - but the order of the fields are.
|
2021-12-21 04:02:07 +00:00
|
|
|
|
2021-12-21 05:52:54 +00:00
|
|
|
Consecutive xml nodes with the same name are assumed to be arrays.
|
2021-12-21 04:02:07 +00:00
|
|
|
|
|
|
|
All values in XML are assumed to be strings - but you can use `from_yaml` to parse them into their correct types:
|
|
|
|
|
|
|
|
|
|
|
|
```
|
|
|
|
yq e -p=xml '.myNumberField |= from_yaml' my.xml
|
|
|
|
```
|
|
|
|
|
2021-12-21 05:52:54 +00:00
|
|
|
|
|
|
|
```xml
|
|
|
|
<cat name="tiger">meow</cat>
|
|
|
|
```
|
|
|
|
|
|
|
|
The content of the node will be set as a field in the map with the key "+content". Use the `--xml-content-name` flag to change this.
|
|
|
|
|
2021-12-21 04:02:07 +00:00
|
|
|
## Parse xml: simple
|
|
|
|
Given a sample.xml file of:
|
|
|
|
```xml
|
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<cat>meow</cat>
|
|
|
|
```
|
|
|
|
then
|
|
|
|
```bash
|
2021-12-21 04:56:08 +00:00
|
|
|
yq e -p=xml '.' sample.xml
|
2021-12-21 04:02:07 +00:00
|
|
|
```
|
|
|
|
will output
|
|
|
|
```yaml
|
|
|
|
cat: meow
|
|
|
|
```
|
|
|
|
|
|
|
|
## Parse xml: array
|
|
|
|
Consecutive nodes with identical xml names are assumed to be arrays.
|
|
|
|
|
|
|
|
Given a sample.xml file of:
|
|
|
|
```xml
|
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<animal>1</animal>
|
|
|
|
<animal>2</animal>
|
|
|
|
```
|
|
|
|
then
|
|
|
|
```bash
|
2021-12-21 04:56:08 +00:00
|
|
|
yq e -p=xml '.' sample.xml
|
2021-12-21 04:02:07 +00:00
|
|
|
```
|
|
|
|
will output
|
|
|
|
```yaml
|
|
|
|
animal:
|
|
|
|
- "1"
|
|
|
|
- "2"
|
|
|
|
```
|
|
|
|
|
|
|
|
## Parse xml: attributes
|
2022-01-15 00:57:59 +00:00
|
|
|
Attributes are converted to fields, with the default attribute prefix '+'. Use '--xml-attribute-prefix` to set your own.
|
2021-12-21 04:02:07 +00:00
|
|
|
|
|
|
|
Given a sample.xml file of:
|
|
|
|
```xml
|
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<cat legs="4">
|
|
|
|
<legs>7</legs>
|
|
|
|
</cat>
|
|
|
|
```
|
|
|
|
then
|
|
|
|
```bash
|
2021-12-21 04:56:08 +00:00
|
|
|
yq e -p=xml '.' sample.xml
|
2021-12-21 04:02:07 +00:00
|
|
|
```
|
|
|
|
will output
|
|
|
|
```yaml
|
|
|
|
cat:
|
|
|
|
+legs: "4"
|
|
|
|
legs: "7"
|
|
|
|
```
|
|
|
|
|
|
|
|
## Parse xml: attributes with content
|
2022-01-15 00:57:59 +00:00
|
|
|
Content is added as a field, using the default content name of '+content'. Use `--xml-content-name` to set your own.
|
2021-12-21 04:02:07 +00:00
|
|
|
|
|
|
|
Given a sample.xml file of:
|
|
|
|
```xml
|
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<cat legs="4">meow</cat>
|
|
|
|
```
|
|
|
|
then
|
|
|
|
```bash
|
2021-12-21 04:56:08 +00:00
|
|
|
yq e -p=xml '.' sample.xml
|
2021-12-21 04:02:07 +00:00
|
|
|
```
|
|
|
|
will output
|
|
|
|
```yaml
|
|
|
|
cat:
|
|
|
|
+content: meow
|
|
|
|
+legs: "4"
|
|
|
|
```
|
|
|
|
|
2022-01-15 00:57:59 +00:00
|
|
|
## Parse xml: with comments
|
|
|
|
A best attempt is made to preserve comments.
|
|
|
|
|
|
|
|
Given a sample.xml file of:
|
|
|
|
```xml
|
|
|
|
|
|
|
|
<!-- before cat -->
|
|
|
|
<cat>
|
|
|
|
<!-- in cat before -->
|
|
|
|
<x>3<!-- multi
|
|
|
|
line comment
|
|
|
|
for x --></x>
|
|
|
|
<!-- before y -->
|
|
|
|
<y>
|
|
|
|
<!-- in y before -->
|
|
|
|
<d><!-- in d before -->z<!-- in d after --></d>
|
|
|
|
|
|
|
|
<!-- in y after -->
|
|
|
|
</y>
|
|
|
|
<!-- in_cat_after -->
|
|
|
|
</cat>
|
|
|
|
<!-- after cat -->
|
|
|
|
|
|
|
|
```
|
|
|
|
then
|
|
|
|
```bash
|
|
|
|
yq e -p=xml '.' sample.xml
|
|
|
|
```
|
|
|
|
will output
|
|
|
|
```yaml
|
|
|
|
# before cat
|
|
|
|
cat:
|
|
|
|
# in cat before
|
|
|
|
x: "3" # multi
|
|
|
|
# line comment
|
|
|
|
# for x
|
|
|
|
# before y
|
|
|
|
|
|
|
|
y:
|
|
|
|
# in y before
|
|
|
|
# in d before
|
|
|
|
d: z # in d after
|
|
|
|
# in y after
|
|
|
|
# in_cat_after
|
|
|
|
# after cat
|
|
|
|
```
|
|
|
|
|
2021-12-21 04:56:08 +00:00
|
|
|
## Encode xml: simple
|
|
|
|
Given a sample.yml file of:
|
|
|
|
```yaml
|
|
|
|
cat: purrs
|
|
|
|
```
|
|
|
|
then
|
|
|
|
```bash
|
|
|
|
yq e -o=xml '.' sample.yml
|
|
|
|
```
|
|
|
|
will output
|
|
|
|
```xml
|
2022-01-15 00:57:59 +00:00
|
|
|
<cat>purrs</cat>
|
|
|
|
```
|
2021-12-21 04:56:08 +00:00
|
|
|
|
|
|
|
## Encode xml: array
|
|
|
|
Given a sample.yml file of:
|
|
|
|
```yaml
|
|
|
|
pets:
|
|
|
|
cat:
|
|
|
|
- purrs
|
|
|
|
- meows
|
|
|
|
```
|
|
|
|
then
|
|
|
|
```bash
|
|
|
|
yq e -o=xml '.' sample.yml
|
|
|
|
```
|
|
|
|
will output
|
|
|
|
```xml
|
|
|
|
<pets>
|
|
|
|
<cat>purrs</cat>
|
|
|
|
<cat>meows</cat>
|
2022-01-15 00:57:59 +00:00
|
|
|
</pets>
|
|
|
|
```
|
2021-12-21 04:56:08 +00:00
|
|
|
|
2021-12-21 05:08:37 +00:00
|
|
|
## Encode xml: attributes
|
|
|
|
Fields with the matching xml-attribute-prefix are assumed to be attributes.
|
|
|
|
|
|
|
|
Given a sample.yml file of:
|
|
|
|
```yaml
|
|
|
|
cat:
|
|
|
|
+name: tiger
|
|
|
|
meows: true
|
|
|
|
|
|
|
|
```
|
|
|
|
then
|
|
|
|
```bash
|
|
|
|
yq e -o=xml '.' sample.yml
|
|
|
|
```
|
|
|
|
will output
|
|
|
|
```xml
|
|
|
|
<cat name="tiger">
|
|
|
|
<meows>true</meows>
|
2022-01-15 00:57:59 +00:00
|
|
|
</cat>
|
|
|
|
```
|
2021-12-21 05:08:37 +00:00
|
|
|
|
2021-12-21 05:19:27 +00:00
|
|
|
## Encode xml: attributes with content
|
|
|
|
Fields with the matching xml-content-name is assumed to be content.
|
|
|
|
|
|
|
|
Given a sample.yml file of:
|
|
|
|
```yaml
|
|
|
|
cat:
|
|
|
|
+name: tiger
|
|
|
|
+content: cool
|
|
|
|
|
|
|
|
```
|
|
|
|
then
|
|
|
|
```bash
|
|
|
|
yq e -o=xml '.' sample.yml
|
|
|
|
```
|
|
|
|
will output
|
|
|
|
```xml
|
2022-01-15 00:57:59 +00:00
|
|
|
<cat name="tiger">cool</cat>
|
|
|
|
```
|
|
|
|
|
|
|
|
## Encode xml: comments
|
|
|
|
A best attempt is made to copy comments to xml.
|
|
|
|
|
|
|
|
Given a sample.yml file of:
|
|
|
|
```yaml
|
|
|
|
# above_cat
|
|
|
|
cat: # inline_cat
|
|
|
|
# above_array
|
|
|
|
array: # inline_array
|
|
|
|
- val1 # inline_val1
|
|
|
|
# above_val2
|
|
|
|
- val2 # inline_val2
|
|
|
|
# below_cat
|
|
|
|
|
|
|
|
```
|
|
|
|
then
|
|
|
|
```bash
|
|
|
|
yq e -o=xml '.' sample.yml
|
|
|
|
```
|
|
|
|
will output
|
|
|
|
```xml
|
|
|
|
<!-- above_cat inline_cat --><cat><!-- above_array inline_array -->
|
|
|
|
<array>val1<!-- inline_val1 --></array>
|
|
|
|
<array><!-- above_val2 -->val2<!-- inline_val2 --></array>
|
|
|
|
</cat><!-- below_cat -->
|
|
|
|
```
|
|
|
|
|
|
|
|
## Round trip: with comments
|
|
|
|
A best effort is made, but comment positions and white space are not preserved perfectly.
|
|
|
|
|
|
|
|
Given a sample.xml file of:
|
|
|
|
```xml
|
|
|
|
|
|
|
|
<!-- before cat -->
|
|
|
|
<cat>
|
|
|
|
<!-- in cat before -->
|
|
|
|
<x>3<!-- multi
|
|
|
|
line comment
|
|
|
|
for x --></x>
|
|
|
|
<!-- before y -->
|
|
|
|
<y>
|
|
|
|
<!-- in y before -->
|
|
|
|
<d><!-- in d before -->z<!-- in d after --></d>
|
|
|
|
|
|
|
|
<!-- in y after -->
|
|
|
|
</y>
|
|
|
|
<!-- in_cat_after -->
|
|
|
|
</cat>
|
|
|
|
<!-- after cat -->
|
|
|
|
|
|
|
|
```
|
|
|
|
then
|
|
|
|
```bash
|
|
|
|
yq e -p=xml -o=xml '.' sample.xml
|
|
|
|
```
|
|
|
|
will output
|
|
|
|
```xml
|
|
|
|
<!-- before cat --><cat><!-- in cat before -->
|
|
|
|
<x>3<!-- multi
|
|
|
|
line comment
|
|
|
|
for x --></x><!-- before y -->
|
|
|
|
<y><!-- in y before
|
|
|
|
in d before -->
|
|
|
|
<d>z<!-- in d after --></d><!-- in y after -->
|
|
|
|
</y><!-- in_cat_after -->
|
|
|
|
</cat><!-- after cat -->
|
|
|
|
```
|
2021-12-21 05:19:27 +00:00
|
|
|
|