X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;f=2%2Fdoc%2Freadme.lml;h=5be2b43cdc70e03c7409c5028be408bdfa57ede2;hb=7685dfd68f3f0dc2e75a19ee4bdbba701ff0ac74;hp=3c99494093c0342f1f16b916d2201b81509c0e19;hpb=db5f15ebc908638e53127fac074589578e1fcc40;p=lml.git diff --git a/2/doc/readme.lml b/2/doc/readme.lml index 3c99494..5be2b43 100644 --- a/2/doc/readme.lml +++ b/2/doc/readme.lml @@ -2,7 +2,7 @@ (in-package #:lml2) -(page ("readme") +(html-file-page ("readme") (html (:head (:title "LML2 README") @@ -43,7 +43,9 @@ (:li "Lowercase tag names so that (html ((:p class 'a))) now produces '<p class=\"a\"></p>") (:li "Addition of new tags such as :insert-file, :nbsp, :jscript") (:li "Removal of the if* macro from the htmlgen.lisp source code") - (:li "Incorporation of LML's standard site macro and other helper functions.")) + (:li "Incorporation of LML's standard site macro and other helper functions.") + (:li "Addition of special attribute tags (:if :when :optional :format :format") + (:li "Automatic quoting of attribute values for non-string values")) (:h2 "Installation") (:p @@ -73,16 +75,12 @@ (:pre "(html (:i \"The square of the first five integers are: \") - (:b - (loop as x from 1 to 5 - doing - (lml-format \" ~D\" (* x x)))))")) + (:b (loop as x from 1 to 5 + doing (html " " (:princ (* x x))))))")) (:td (:i "The square of the first five integers are: ") - (:b - (loop as x from 1 to 5 - doing - (lml-format " ~D" (* x x)))))) + (:b (loop as x from 1 to 5 + doing (html " " (:princ (* x x))))))) )) :hr (:p