yaml.WithComment
is a option for encoding with comment.
The position where you want to add a comment is represented by YAMLPath, and it is the key of yaml.CommentMap
.
Also, you can select Head
comment or Line
comment as the comment type.
- Fix YAML handling where anchor exists
- Support encoding of comment node ( #233 )
- Support
yaml.NodeToValue(ast.Node, interface{}, ...DecodeOption) error
( #236 )- Can convert a AST node to a value directly
- Fix parsing of literal with comment ( #234 )
- Rename
MarshalWithContext
toMarshalContext
- Rename
UnmarshalWithContext
toUnmarshalContext
- Fix searching anchor by alias name ( #212 )
- Fixing Issue 186, scanner should account for newline characters when processing multi-line text. Without this source annotations line/column number (for this and all subsequent tokens) is inconsistent with plain text editors. e.g. goccy#186. This addresses the issue specifically for single and double quote text only. ( #210 )
- Add error for unterminated flow mapping node ( #213 )
- Handle missing required field validation ( #221 )
- Nicely format unexpected node type errors ( #229 )
- Support to encode map which has defined type key ( #231 )
- Support sequence indentation by EncodeOption ( #232 )
- Fix origin buffer for DocumentHeader and DocumentEnd and Directive
- Fix origin buffer for anchor value
- Fix syntax error about map value
- Fix parsing MergeKey ('<<') characters
- Fix encoding of float value
- Fix incorrect column annotation when single or double quotes are used
- Support to encode/decode of ast.Node directly