vscode-yaml
vscode-yaml copied to clipboard
Feature wanted: side preview page which expand yaml anchor, ref, and extend
&
*
<<
@JPinkney I do not think there is enough information on this issue. Can you add details ?
I think we should just close this and @weaming can reopen if they can expand on it.
I mean
---
foo: &anchor
K1: "One"
K2: "Two"
bar: *anchor
expand to :
{
"foo": {
"K1": "One",
"K2": "Two"
},
"bar": {
"K1": "One",
"K2": "Two"
}
}
in YAML or JSON format.
I'd love if it worked like the Markdown: Open Preview to the Side
where it would just merge all the anchors and aliases into a final yaml.
Any update on this?