Skip to content
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

Trailing new lines are added to literal strings #406

Open
nervo opened this issue Oct 11, 2023 · 0 comments
Open

Trailing new lines are added to literal strings #406

nervo opened this issue Oct 11, 2023 · 0 comments
Labels
bug Something isn't working

Comments

@nervo
Copy link
Contributor

nervo commented Oct 11, 2023

Even if they are not part of a literal string, trailing newlines are systematically added to the string

foo: |
  bar


# ↑↑↑ Note the two newlines right after the literal string

In this siituation, the bar value will be "bar\n\n" instead of "bar\n".

Note that this also applies with strip sign |-

Here is a simple reproduction case:

package main

import (
	"fmt"
	goYaml "github.com/goccy/go-yaml"
)

func main() {
	yml := `
foo: |-
  bar


`
	var vmap[string]any
	goYaml.Unmarshal([]byte(yml), &v)

	fmt.Println(v["foo"])
	// -> "bar\n\n"
}

And a related playground: https://go.dev/play/p/XG6oCnbwwiz

  • Go version: 1.21.2
  • go-yaml's Version: v1.11.2
@nervo nervo added the bug Something isn't working label Oct 11, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

No branches or pull requests

1 participant