X-Git-Url: http://git.kpe.io/?p=lml2.git;a=blobdiff_plain;f=doc%2Freadme.lml;h=1c9fa4348d21799935b8f0bc3ae142682d61ecbb;hp=e330c31e25bec4ac8fc44f77bf0dfa3e896701f8;hb=6ec49bfd3b5c1d91421258e9452ce38f99f49681;hpb=2bde32940be97a0ebf36a6f30609344d4f6a5d46 diff --git a/doc/readme.lml b/doc/readme.lml index e330c31..1c9fa43 100644 --- a/doc/readme.lml +++ b/doc/readme.lml @@ -43,7 +43,10 @@ (: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") + (:li "Post macroexpansion code walker to collape sequential write-string calls")) (:h2 "Installation") (:p @@ -73,16 +76,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