summaryrefslogtreecommitdiff
path: root/macros.lisp
diff options
context:
space:
mode:
authorMatthias Benkard <code@mail.matthias.benkard.de>2010-01-31 10:34:56 +0100
committerMatthias Benkard <code@mail.matthias.benkard.de>2010-01-31 10:34:56 +0100
commit634a0d3fe3a50d34dba8ecab810eae8387b38e63 (patch)
tree1fc773917bbd4e39d317e05d9956500add295518 /macros.lisp
parentcc5c18b0847c084bf73deb4a15ef3bfe4efd9278 (diff)
Rollback patch “Trick Internet Explorer into supporting some HTML 5 tags.”
Ignore-this: 97c77ca47a17f1d3e8465dabc5003f60 darcs-hash:110f530d17b041434466e7973e7910d3013cb75d
Diffstat (limited to 'macros.lisp')
-rw-r--r--macros.lisp14
1 files changed, 6 insertions, 8 deletions
diff --git a/macros.lisp b/macros.lisp
index 3daccfc..651a085 100644
--- a/macros.lisp
+++ b/macros.lisp
@@ -32,20 +32,18 @@
(emit-open-tag "html" #+clisp `(("dir" . ,dir)
("lang" . ,lang)
("xml:lang" . ,lang)
- ("xmlns" . ,xmlns)
- ("xmlns:html" . ,xmlns))
+ ("xmlns" . ,xmlns))
#-clisp `("dir" ,dir
"lang" ,lang
"xml:lang" ,lang
- "xmlns" ,xmlns
- "xmlns:html" ,xmlns))
+ "xmlns" ,xmlns))
(emit-body body)
(emit-close-tag "html"))
-(yaclml::def-html-tag <::html\:article :core :i18n :event)
-(yaclml::def-html-tag <::html\:header :core :i18n :event)
-(yaclml::def-html-tag <::html\:footer :core :i18n :event)
-(yaclml::def-html-tag <::html\:time :core :i18n :event pubdate datetime)
+(yaclml::def-html-tag <::article :core :i18n :event)
+(yaclml::def-html-tag <::header :core :i18n :event)
+(yaclml::def-html-tag <::footer :core :i18n :event)
+(yaclml::def-html-tag <::time :core :i18n :event pubdate datetime)
(defmacro with-web-journal ((page-title &key canonical-uri) &body body)