mirror of
https://github.com/status-im/NimYAML.git
synced 2025-02-10 18:26:37 +00:00
* NimYAML now uses the tag prefix tag:nimyaml.org,2016: * That tag handle is shortened to !n! when presenting * Also fixed some minor bugs dealing with tag handles
13 lines
176 B
YAML
13 lines
176 B
YAML
%YAML 1.2
|
|
%TAG !n! tag:nimyaml.org,2016:
|
|
--- !n!custom:NodeObj &a
|
|
name: Node 1
|
|
left:
|
|
name: Node 2
|
|
left: ~
|
|
right: &b
|
|
name: Node 3
|
|
left: *a
|
|
right: ~
|
|
right: *b
|