From 30e9fd70e4d6242a4cc6ad5a6759ab6714bfa6c9 Mon Sep 17 00:00:00 2001 From: "Kevin M. Rosenberg" Date: Thu, 26 Jun 2003 01:17:16 +0000 Subject: [PATCH] r5206: Automatic commit for debian_version_1_1_3-1 --- doc/readme.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/doc/readme.html b/doc/readme.html index 3b5b400..51fa64d 100644 --- a/doc/readme.html +++ b/doc/readme.html @@ -1,9 +1,9 @@ -LML2 README

LML2 Documentation

Overview

LML2 is a Common Lisp package for generating HTML and XHTML documents. LML2 is based on:

The home page for LML2 is http://lml2.b9.com/.

Differences between LML and LML2

The syntax and HTML generation for LML2 are based on Franz's htmlgen macro. Personally, I like the syntax of LML better than LML2, but there are advantages of Franz's approach:

Differences between htmlgen and LML2

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-lml2 to automatically download and install the LML2 package.

On a non-Debian system, you need to have ASDF installed to load the system definition file. You will need to change the source +LML2 README

LML2 Documentation

Overview

LML2 is a Common Lisp package for generating HTML and XHTML documents. LML2 is based on:

The home page for LML2 is http://lml2.b9.com/.

Differences between LML2 and LML

The syntax and HTML generation for LML2 are based on Franz's htmlgen macro. Personally, I like the syntax of LML better than LML2, but there are advantages of Franz's approach:

Differences between LML2 and htmlgen

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-lml2 to automatically download and install the LML2 package.

On a non-Debian system, you need to have ASDF 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 LML2. However, the source code is instructive and there are example files included in the LML2 package.

Examples

Iteration
(html
-   (:i "The square of the first five integers are: )"
+   (:i "The square of the first five integers are: ")
    (:b
    (loop as x from 1 to 5 
      doing
-     (lml-format " ~D" (* x x))))
The square of the first five integers are: 1 4 9 16 25

View this page's LML2 source.

\ No newline at end of file + (lml-format " ~D" (* x x)))))The square of the first five integers are: 1 4 9 16 25

View this page's LML2 source.

\ No newline at end of file -- 2.34.1