Skip to content
This repository was archived by the owner on Dec 19, 2025. It is now read-only.
Open
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion _fixtures/struct_tags.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ type MyStruct struct {
Field1 string `json:"field1" info:"something"`

// Field6 example adapted from https://github.com/segmentio/golines/issues/15.
ALongField2 string `json:"long_field2 ãï" info:"something else ãï" tag:"a really long tag that extends us beyond 100 chars"`
ALongField2 string `json:"long_field2 ãï" info:"something else ãï" tag:"a really long tag that extends us beyond 100 chars \\escaped\\|escaped"`
Field3 string `json:"field3" info:"ãï third thing"`
Field4 string `json:"field3" tag:"ãï something"`
Field5 int `tag:"something else" tag:"something"`
Expand Down
2 changes: 1 addition & 1 deletion _fixtures/struct_tags__exp.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ type MyStruct struct {
Field1 string `json:"field1" info:"something"`

// Field6 example adapted from https://github.com/segmentio/golines/issues/15.
ALongField2 string `json:"long_field2 ãï" info:"something else ãï" tag:"a really long tag that extends us beyond 100 chars"`
ALongField2 string `json:"long_field2 ãï" info:"something else ãï" tag:"a really long tag that extends us beyond 100 chars \\escaped\\|escaped"`
Field3 string `json:"field3" info:"ãï third thing"`
Field4 string `json:"field3" tag:"ãï something"`
Field5 int ` tag:"something else"`
Expand Down
2 changes: 1 addition & 1 deletion tags.go
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ func alignTags(fields []*dst.Field) {
lenUsed := 0

if ok {
tagComponents = append(tagComponents, fmt.Sprintf("%s:\"%s\"", key, value))
tagComponents = append(tagComponents, fmt.Sprintf("%s:%#v", key, value))
lenUsed += len(key) + tagValueLen(value) + 3
} else {
tagComponents = append(tagComponents, "")
Expand Down