-
-
Notifications
You must be signed in to change notification settings - Fork 5.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Twig] [twig reference] add examples in yaml part #19640
[Twig] [twig reference] add examples in yaml part #19640
Conversation
{# output: { a: { c: e }, b: { d: f } } #} | ||
|
||
{{ array|yaml_encode(1) }} | ||
{# output: a: { c: e } b: { d: f } #} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This looks wrong to me. The top-level mapping needs to span multiple-lines if it doesn't use the inline syntax.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I fixed this while merging. See 56d0815 I opted for always showing the output in a new line because otherwise is very confusing for output that generates more than 1 line.
{# output: %array% { a: { c: e }, b: { d: f } } #} | ||
|
||
{{ array|yaml_dump(1) }} | ||
{# output: %array% a: { c: e } b: { d: f } #} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
see my comment above for yaml_encode
ca13f29
to
28ccb7f
Compare
94eb5c0
to
346ea4b
Compare
This was finally merged! Thanks @Sarah-eit |
No description provided.