saphyr-serde/parser/tests/yaml-test-suite/src/CUP7.yaml
2024-10-12 16:15:46 +02:00

26 lines
512 B
YAML

---
- name: Spec Example 5.6. Node Property Indicators
from: http://www.yaml.org/spec/1.2/spec.html#id2773402
tags: local-tag spec tag alias
yaml: |
anchored: !local &anchor value
alias: *anchor
tree: |
+STR
+DOC
+MAP
=VAL :anchored
=VAL &anchor <!local> :value
=VAL :alias
=ALI *anchor
-MAP
-DOC
-STR
json: |
{
"anchored": "value",
"alias": "value"
}
dump: |
anchored: &anchor !local value
alias: *anchor