diff options
author | Kartik K. Agaram <vc@akkartik.com> | 2022-02-10 07:40:04 -0800 |
---|---|---|
committer | Kartik K. Agaram <vc@akkartik.com> | 2022-02-10 07:40:04 -0800 |
commit | c4402edc5b12ea74bcdfb1043076998ee1036a3f (patch) | |
tree | 83b8242137aec9198119ed7cbf85d89a42692c0e | |
parent | 1a40bc7f5f3517e0fb17ffdea33fd8f5529195b9 (diff) | |
download | teliva-c4402edc5b12ea74bcdfb1043076998ee1036a3f.tar.gz |
zet.tlv: copy in sample zettels
-rw-r--r-- | zet.tlv | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/zet.tlv b/zet.tlv index 2e42402..be1da87 100644 --- a/zet.tlv +++ b/zet.tlv @@ -962,21 +962,21 @@ > root="id1", > final=4, > id1={ - > data="abs\ndef", + > data="this is zettel A\n\nit has some text", > child="id3", > next="id2", > }, > id2={ - > data="ghi\njklm", + > data="this is a sibling of zettel A at the top level", > prev="id1", > }, > id3={ - > data="cz", + > data="this is zettel B, a child of A", > parent="id1", > next="id4", > }, > id4={ - > data="d", + > data="this is another child of zettel A, a sibling of B", > parent="id1", > prev="id3", > } |