From: Kevin M. Rosenberg Date: Mon, 16 Sep 2002 06:21:41 +0000 (+0000) Subject: r2693: *** empty log message *** X-Git-Tag: v2.5.5~183 X-Git-Url: http://git.kpe.io/?p=lml.git;a=commitdiff_plain;h=d5d00b4cf4b4533884982c4fbc10189b19fb737e r2693: *** empty log message *** --- diff --git a/doc/make.cl b/doc/make.cl index 5f06b4b..3ee1402 100644 --- a/doc/make.cl +++ b/doc/make.cl @@ -1,3 +1,5 @@ +#+cmu (setq ext:*gc-verbose* nil) + (require :lml) (in-package :lml) (let ((cwd (parse-namestring (lml-cwd)))) diff --git a/doc/readme.html b/doc/readme.html index 57ccaaf..8c7777c 100644 --- a/doc/readme.html +++ b/doc/readme.html @@ -1,6 +1,7 @@ -LML README

LML Documentation

Overview

LML is a Common Lisp package for generating HTML and XHTML documents. LML is authored by Kevin Rosenberg. The home page for LML is http://www.b9.com/.

Installation

The easiest way to install LML is to use the Debian GNU/Linux operating system. You can then use the command apt-get install cl-lml to automatically download and install the LML package.

On a non-Debian system, you need to have either ASDF or mk-defsystem installed to load the system definition file. You will need to change the source pathname in the system file to match the location where you have installed LML.

Usage

Currently, there is no documentation on the functions provided by LML. However, the source code is instructive and there are example files included in the LML package.

Examples

Iteration
"The square of the first five integers are"
-  (loop as x from 1 to 5 
-      doing
-      (lml-print " ~D" (* x x)))
1 4 9 16 25
\ No newline at end of file +LML README

LML Documentation

Overview

LML is a Common Lisp package for generating HTML and XHTML documents. LML is authored by Kevin Rosenberg. The home page for LML is http://www.b9.com/.

Installation

The easiest way to install LML is to use the Debian GNU/Linux operating system. You can then use the command apt-get install cl-lml to automatically download and install the LML package.

On a non-Debian system, you need to have either ASDF or mk-defsystem installed to load the system definition file. You will need to change the source pathname in the system file to match the location where you have installed LML.

Usage

Currently, there is no documentation on the functions provided by LML. However, the source code is instructive and there are example files included in the LML package.

Examples

Iteration
(i "The square of the first five integers are)"
+ (b
+   (loop as x from 1 to 5 
+     doing
+     (lml-print " ~D" (* x x))))
The square of the first five integers are 1 4 9 16 25
\ No newline at end of file diff --git a/doc/readme.lml b/doc/readme.lml index f43c809..478d1d9 100644 --- a/doc/readme.lml +++ b/doc/readme.lml @@ -38,19 +38,22 @@ "in the LML package.") (h2 "Examples") - (table - (tbody :border 1 + (table :border 1 :cellpadding 3 + (tbody (tr - (td :colspan 2 :style "color:000;background-color:ccc;font-weight:bold;" "Iteration")) + (td :colspan 2 :style "color:#000;background-color:#ccc;font-weight:bold;" "Iteration")) (tr (td (pre -"\"The square of the first five integers are\" - (loop as x from 1 to 5 - doing - (lml-print \" ~D\" (* x x)))")) +"(i \"The square of the first five integers are)\" + (b + (loop as x from 1 to 5 + doing + (lml-print \" ~D\" (* x x))))")) (td - (loop as x from 1 to 5 - doing - (lml-print " ~D" (* x x))))) + (i "The square of the first five integers are") + (b + (loop as x from 1 to 5 + doing + (lml-print " ~D" (* x x)))))) ))))