取りあえずソースだけ <!-- これがHTMLファイルの中に書かれています --> <p id=out></p> <script type="application/jscheme"> (define (sxml->xml sxml) (define (make-attr l ac) (if (null? l) ac (make-attr (cdr l) (string-append ac " " (symbol->string (caar l)) "=\"" (cadar l) "\"")))) (define (make-xml x bef aft) (cond ((string? x) (append bef (list x) aft)) ((and (pair? x) (symbol? (car x))) (let ((tag (symbol->string (car x))))