(load (string-append laml-dir "laml.scm"))

(lib-load "xml-in-laml/xml-in-laml.scm")
(lib-load "xml-in-laml/mirrors/xhtml10-frameset-mirror.scm")
(lib-load "xml-in-laml/mirrors/xhtml10-transitional-mirror.scm")

Show source file in small font In frameset-2: Link from html-props to it's cross reference table entry 
(define html-props (list 'xmlns "http://www.w3.org/1999/xhtml")) (set! xml-validate-contents? #t) (set! xml-check-attributes? #t) Show source file in small font In frameset-2: Link from no-overlap-checking to it's cross reference table entry 4.1. Using more than one mirror
; no-overlap-checking (set! xml-check-language-overlap? #f) Show source file in small font In frameset-2: Link from fs:html to it's cross reference table entry 4.1. Using more than one mirror
(define fs:html (xhtml10-frameset 'html)) Show source file in small font In frameset-2: Link from fs:head to it's cross reference table entry 
(define fs:head (xhtml10-frameset 'head)) Show source file in small font In frameset-2: Link from fs:title to it's cross reference table entry 
(define fs:title (xhtml10-frameset 'title)) Show source file in small font In frameset-2: Link from fs:body to it's cross reference table entry 
(define fs:body (xhtml10-frameset 'body)) Show source file in small font In frameset-2: Link from fs:p to it's cross reference table entry 
(define fs:p (xhtml10-frameset 'p)) Show source file in small font In frameset-2: Link from fs:em to it's cross reference table entry 
(define fs:em (xhtml10-frameset 'em)) Show source file in small font In frameset-2: Link from fs:noframes to it's cross reference table entry 
(define fs:noframes (xhtml10-frameset 'noframes)) (write-html '(raw prolog) (fs:html html-props (fs:head (fs:title "Third frameset example")) (frameset (frame 'name "fr2" 'src "transitional-1.html") (frame 'name "fr2" 'src "transitional-2.html") 'cols "40%,60%" (fs:noframes (fs:body (fs:p "Frames are" (fs:em "unfortunately") "not available"))) ) )) (write-html '(raw prolog) (html html-props (head (title "Left frame")) (body (p "This is the left frame")) ) (in-startup-directory "transitional-1.html") ) (write-html '(raw prolog) (html html-props (head (title "Right frame")) (body (p "This is the right frame. ") (p "This example illustrates a possible way to deal with the language overlap. Try process it.") ) ) (in-startup-directory "transitional-2.html") ) (end-laml)