Initial data commit
This commit is contained in:
parent
72d218235f
commit
f23f22d71c
199087 changed files with 3378941 additions and 0 deletions
22
Task/XML-Output/M2000-Interpreter/xml-output-1.m2000
Normal file
22
Task/XML-Output/M2000-Interpreter/xml-output-1.m2000
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
Module CheckIt {
|
||||
Flush
|
||||
Data "April", {Bubbly: I'm > Tam and <= Emily}
|
||||
Data "Tam O'Shanter", {Burns: "When chapman billies leave the street ..."}
|
||||
Data "Emily", {Short & shrift}
|
||||
|
||||
declare xml xmlData
|
||||
|
||||
with xml, "xml" as doc$, "beautify" as beautify
|
||||
|
||||
method xml, "PrepareNode", "CharacterRemarks" as Node
|
||||
method xml, "InsertNode", Node
|
||||
while not empty
|
||||
read name$, text$
|
||||
method xml, "PrepareNode", "Character", text$ as Node1
|
||||
method xml, "PlaceAttributeToNode", Node1, "name", name$
|
||||
method xml, "AppendChild", Node1
|
||||
end while
|
||||
beautify=-4
|
||||
Report doc$
|
||||
}
|
||||
CheckIt
|
||||
5
Task/XML-Output/M2000-Interpreter/xml-output-2.m2000
Normal file
5
Task/XML-Output/M2000-Interpreter/xml-output-2.m2000
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
<CharacterRemarks>
|
||||
<Character name="April">Bubbly: I'm &qt; Tam and <= Emily</Character>
|
||||
<Character name="Tam O'Shanter">Burns: "When chapman billies leave the street ..."</Character>
|
||||
<Character name="Emily">Short & shrift</Character>
|
||||
</CharacterRemarks>
|
||||
Loading…
Add table
Add a link
Reference in a new issue