blob: 03cea5e15ebde8e05813fc348603e51f34db23d3 [file] [log] [blame] [view]
Marcel van Lohuizen75cb0032019-01-11 12:10:48 +01001[TOC](Readme.md) [Prev](emit.md) [Next](duplicates.md)
2
Marcel van Lohuizenaf0932f2019-01-11 13:03:56 +01003_References and Visibility_
4
Marcel van Lohuizen75cb0032019-01-11 12:10:48 +01005# Hidden Fields
6
7A non-quoted field name that starts with an underscore (`_`) is not
8emitted from the output.
9To includes fields in the configuration that start with an underscore
10put them in quotes.
11
Jonathan Amsterdame4790382019-01-20 10:29:29 -050012Quoted and non-quoted fields share the same namespace unless they start
Marcel van Lohuizen75cb0032019-01-11 12:10:48 +010013with an underscore.
14
15<!-- CUE editor -->
16```
17"_foo": 2
18_foo: 3
19foo: 4
20```
21
22<!-- result -->
23```
24"_foo": 2
25foo: 4
Jonathan Amsterdame4790382019-01-20 10:29:29 -050026```