>>598
ありがとうございます 改めてやってみたらただしく動きました。
ですが、make-xmls-builderからリストを生成して操作しようとするとちょっと扱いづらいことがわかりました
こうなります
("article" NIL "
"
("articleinfo" NIL "
"
("title" NIL "test") ("author" NIL "my @@@name!") "
")
"
"
("section" (("id" "rrr")) "
"
("title" NIL "test1") "
"
("p" NIL "hoge@@@foo") "
"
("pre" NIL "haao@@@u") "
")
"
")
ここで一旦s-xmlを使ってみたら使いやすそうな形式のリストを得られました
(:|article| (:|articleinfo| (:|title| "test") (:|author| "my @@@name!"))
(:|section| (:@ (:|id| "rrr")) (:|title| "test1") (:|p| "hoge@@@foo")
(:|pre| "haao@@@u")))
ただこれをどのようにして書き換えるかがよく分からないので
本を読み直してみます