diff options
author | Matthias Benkard <code@mail.matthias.benkard.de> | 2009-11-15 00:39:23 +0100 |
---|---|---|
committer | Matthias Benkard <code@mail.matthias.benkard.de> | 2009-11-15 00:39:23 +0100 |
commit | bb2fca16f45d1a5dc2b90eb83332d868bfcf79f8 (patch) | |
tree | 5b4c87f257928a00c4d715d94d7a80049ec3f55b | |
parent | 71499fde9c51e7065a2c49efdf3112ed089823f7 (diff) |
Declare an HTML 5 doctype.
Ignore-this: c9436f54d7f47d8e67b09caa203cdbde
darcs-hash:caa4312da54f5156a5e62cca3f29fe1b24b4138b
-rw-r--r-- | macros.lisp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/macros.lisp b/macros.lisp index 4d0124a..b319c98 100644 --- a/macros.lisp +++ b/macros.lisp @@ -27,7 +27,7 @@ (when prologue (emit-princ "<?xml version='1.0' encoding='utf-8'?>") (emit-princ (format nil "~%")) - (emit-princ "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">") + (emit-princ "<!DOCTYPE html>") (emit-princ (format nil "~%"))) (emit-open-tag "html" #+clisp `(("dir" . ,dir) ("lang" . ,lang) |