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.
|