Data commit

This commit is contained in:
Ingy döt Net 2023-07-01 11:58:00 -04:00
parent 7387c8f97b
commit cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions

View file

@ -0,0 +1,16 @@
#lang racket
(require xml)
(define (make-character-xexpr characters remarks)
`(CharacterRemarks
,@(for/list ([character characters]
[remark remarks])
`(Character ((name ,character)) ,remark))))
(display-xml/content
(xexpr->xml
(make-character-xexpr
'("April" "Tam O'Shanter" "Emily")
'("Bubbly: I'm > Tam and <= Emily"
"Burns: \"When chapman billies leave the street ...\""
"Short & shrift"))))

View file

@ -0,0 +1,11 @@
<CharacterRemarks>
<Character name="April">
Bubbly: I'm &gt; Tam and &lt;= Emily
</Character>
<Character name="Tam O'Shanter">
Burns: "When chapman billies leave the street ..."
</Character>
<Character name="Emily">
Short &amp; shrift
</Character>
</CharacterRemarks>