yq/examples/multiline-comments.json5
Robin H. Johnson 76dc8dcae8
feat: JSON5 support
Reference: https://spec.json5.org/
Co-authored-by: Codex <codex@openai.com>
Generated-with: OpenAI Codex CLI (partial)
Signed-off-by: Robin H. Johnson <rjohnson@coreweave.com>
2026-01-13 19:59:04 -08:00

16 lines
211 B
Plaintext

{
/*
multiline block comment
spanning multiple lines
*/
first: 1,
second/* inline block comment */: 2,
third: /* before value */ 3,
fourth: [
1,
/* between elements */
2,
],
}