forked from extern/nushell
28 lines
621 B
Markdown
28 lines
621 B
Markdown
|
---
|
||
|
title: to xml
|
||
|
layout: command
|
||
|
version: 0.59.0
|
||
|
---
|
||
|
|
||
|
Convert table into .xml text
|
||
|
|
||
|
## Signature
|
||
|
|
||
|
```> to xml --pretty```
|
||
|
|
||
|
## Parameters
|
||
|
|
||
|
- `--pretty {int}`: Formats the XML text with the provided indentation setting
|
||
|
|
||
|
## Examples
|
||
|
|
||
|
Outputs an XML string representing the contents of this table
|
||
|
```shell
|
||
|
> { "note": { "children": [{ "remember": {"attributes" : {}, "children": [Event]}}], "attributes": {} } } | to xml
|
||
|
```
|
||
|
|
||
|
Optionally, formats the text with a custom indentation setting
|
||
|
```shell
|
||
|
> { "note": { "children": [{ "remember": {"attributes" : {}, "children": [Event]}}], "attributes": {} } } | to xml -p 3
|
||
|
```
|