X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;ds=sidebyside;f=genpage.lisp;fp=genpage.lisp;h=9e34467e5744f30facdeead1ee3ba05ad19091c8;hb=1fa7614ba895d7a1bccd310cf9d8e8e1e2472d14;hp=4a00b5b0ec9a9be19ea8fe94e3b05a065d4a2394;hpb=115593575b49ab252692a959380e94707e385de3;p=wol.git diff --git a/genpage.lisp b/genpage.lisp index 4a00b5b..9e34467 100644 --- a/genpage.lisp +++ b/genpage.lisp @@ -12,7 +12,7 @@ ;;;; This file, part of wol, is Copyright (c) 2003 by Kevin M. Rosenberg ;;;; ************************************************************************* -(in-package #:wol) +(in-package wol) (defvar *header-table* (make-hash-table :size 100 :test 'eq) "Table of header functions indexed by site") @@ -105,11 +105,14 @@ (when title-str (html (:title (lml-write-string title-str))))))) +(defvar +std-entities+ " + +") (defun page-prologue (title format css altcss) (ecase format (:xml - (dtd-prologue format) + (dtd-prologue format :entities +std-entities+) (lml-format "~%" (aif css it "http://b9.com/umlsxml.css")) (lml-write-string "") @@ -124,7 +127,7 @@ (lml-write-string "")) ((:xhtml :xhtml11 :xhtml10-strict :xhtml10-transitional :xhtml10-frameset) - (dtd-prologue format) + (dtd-prologue format :entities +std-entities+) (lml-write-string "") (ml-head title (aif css it "http://b9.com/main.css") altcss)