2020-11-18 09:42:37 +00:00
|
|
|
The style operator can be used to get or set the style of nodes (e.g. string style, yaml style)
|
2020-11-17 22:44:16 +00:00
|
|
|
## Examples
|
2020-11-18 09:42:37 +00:00
|
|
|
### Set tagged style
|
2020-11-17 22:44:16 +00:00
|
|
|
Given a sample.yml file of:
|
|
|
|
```yaml
|
|
|
|
a: cat
|
2020-11-18 09:42:37 +00:00
|
|
|
b: 5
|
|
|
|
c: 3.2
|
|
|
|
e: true
|
2020-11-17 22:44:16 +00:00
|
|
|
```
|
|
|
|
then
|
|
|
|
```bash
|
2020-11-18 09:42:37 +00:00
|
|
|
yq eval '.. style="tagged"' sample.yml
|
2020-11-17 22:44:16 +00:00
|
|
|
```
|
|
|
|
will output
|
|
|
|
```yaml
|
2020-11-18 09:42:37 +00:00
|
|
|
!!map
|
|
|
|
a: !!str cat
|
|
|
|
b: !!int 5
|
|
|
|
c: !!float 3.2
|
|
|
|
e: !!bool true
|
|
|
|
```
|
|
|
|
|
|
|
|
### Set double quote style
|
|
|
|
Given a sample.yml file of:
|
|
|
|
```yaml
|
|
|
|
a: cat
|
|
|
|
b: 5
|
|
|
|
c: 3.2
|
|
|
|
e: true
|
|
|
|
```
|
|
|
|
then
|
|
|
|
```bash
|
|
|
|
yq eval '.. style="double"' sample.yml
|
|
|
|
```
|
|
|
|
will output
|
|
|
|
```yaml
|
|
|
|
a: "cat"
|
|
|
|
b: "5"
|
|
|
|
c: "3.2"
|
|
|
|
e: "true"
|
|
|
|
```
|
|
|
|
|
|
|
|
### Set single quote style
|
|
|
|
Given a sample.yml file of:
|
|
|
|
```yaml
|
|
|
|
a: cat
|
|
|
|
b: 5
|
|
|
|
c: 3.2
|
|
|
|
e: true
|
|
|
|
```
|
|
|
|
then
|
|
|
|
```bash
|
|
|
|
yq eval '.. style="single"' sample.yml
|
|
|
|
```
|
|
|
|
will output
|
|
|
|
```yaml
|
|
|
|
a: 'cat'
|
|
|
|
b: '5'
|
|
|
|
c: '3.2'
|
|
|
|
e: 'true'
|
|
|
|
```
|
|
|
|
|
|
|
|
### Set literal quote style
|
|
|
|
Given a sample.yml file of:
|
|
|
|
```yaml
|
|
|
|
a: cat
|
|
|
|
b: 5
|
|
|
|
c: 3.2
|
|
|
|
e: true
|
|
|
|
```
|
|
|
|
then
|
|
|
|
```bash
|
|
|
|
yq eval '.. style="literal"' sample.yml
|
|
|
|
```
|
|
|
|
will output
|
|
|
|
```yaml
|
|
|
|
a: |-
|
|
|
|
cat
|
|
|
|
b: |-
|
|
|
|
5
|
|
|
|
c: |-
|
|
|
|
3.2
|
|
|
|
e: |-
|
|
|
|
true
|
|
|
|
```
|
|
|
|
|
|
|
|
### Set folded quote style
|
|
|
|
Given a sample.yml file of:
|
|
|
|
```yaml
|
|
|
|
a: cat
|
|
|
|
b: 5
|
|
|
|
c: 3.2
|
|
|
|
e: true
|
|
|
|
```
|
|
|
|
then
|
|
|
|
```bash
|
|
|
|
yq eval '.. style="folded"' sample.yml
|
|
|
|
```
|
|
|
|
will output
|
|
|
|
```yaml
|
|
|
|
a: >-
|
|
|
|
cat
|
|
|
|
b: >-
|
|
|
|
5
|
|
|
|
c: >-
|
|
|
|
3.2
|
|
|
|
e: >-
|
|
|
|
true
|
|
|
|
```
|
|
|
|
|
|
|
|
### Set flow quote style
|
|
|
|
Given a sample.yml file of:
|
|
|
|
```yaml
|
|
|
|
a: cat
|
|
|
|
b: 5
|
|
|
|
c: 3.2
|
|
|
|
e: true
|
|
|
|
```
|
|
|
|
then
|
|
|
|
```bash
|
|
|
|
yq eval '.. style="flow"' sample.yml
|
|
|
|
```
|
|
|
|
will output
|
|
|
|
```yaml
|
|
|
|
{a: cat, b: 5, c: 3.2, e: true}
|
|
|
|
```
|
|
|
|
|
|
|
|
### Set empty (default) quote style
|
|
|
|
Given a sample.yml file of:
|
|
|
|
```yaml
|
|
|
|
a: cat
|
|
|
|
b: 5
|
|
|
|
c: 3.2
|
|
|
|
e: true
|
|
|
|
```
|
|
|
|
then
|
|
|
|
```bash
|
|
|
|
yq eval '.. style=""' sample.yml
|
|
|
|
```
|
|
|
|
will output
|
|
|
|
```yaml
|
|
|
|
a: cat
|
|
|
|
b: 5
|
|
|
|
c: 3.2
|
|
|
|
e: true
|
2020-11-17 22:44:16 +00:00
|
|
|
```
|
|
|
|
|
2020-11-19 05:45:05 +00:00
|
|
|
### Read style
|
2020-11-17 22:44:16 +00:00
|
|
|
Given a sample.yml file of:
|
|
|
|
```yaml
|
|
|
|
a: cat
|
|
|
|
b: thing
|
|
|
|
```
|
|
|
|
then
|
|
|
|
```bash
|
|
|
|
yq eval '.. | style' sample.yml
|
|
|
|
```
|
|
|
|
will output
|
|
|
|
```yaml
|
2020-11-18 09:42:37 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
2020-11-17 22:44:16 +00:00
|
|
|
```
|
|
|
|
|