Incorrectly formatted YAML strings #333

Closed
opened 2025-12-30 01:23:37 +01:00 by adam · 0 comments
Owner

Originally created by @bioball on GitHub (Aug 6, 2025).

This Pkl emits incorrect YAML:

foo = "\t\\d"

output {
  renderer = new YamlRenderer {}
}

Produces:

foo: "\t\d"

Should be:

foo: "\t\\d"
Originally created by @bioball on GitHub (Aug 6, 2025). This Pkl emits incorrect YAML: ```pkl foo = "\t\\d" output { renderer = new YamlRenderer {} } ``` Produces: ```yml foo: "\t\d" ``` Should be: ```yml foo: "\t\\d" ```
adam closed this issue 2025-12-30 01:23:37 +01:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/pkl#333