r2693: *** empty log message ***
authorKevin M. Rosenberg <kevin@rosenberg.net>
Mon, 16 Sep 2002 06:21:41 +0000 (06:21 +0000)
committerKevin M. Rosenberg <kevin@rosenberg.net>
Mon, 16 Sep 2002 06:21:41 +0000 (06:21 +0000)
doc/make.cl
doc/readme.html
doc/readme.lml

index 5f06b4b0cc77641a07af61a06b47d11af7347915..3ee14023b539a9afeb7fd1250b033f3d99e2d8e4 100644 (file)
@@ -1,3 +1,5 @@
+#+cmu (setq ext:*gc-verbose* nil)
+
 (require :lml)
 (in-package :lml)
 (let ((cwd (parse-namestring (lml-cwd))))
index 57ccaafd35a87f2d80c8706a0696d3f38e1cea3f..8c7777c333a8365809963cd561f8cb178bdaa87f 100644 (file)
@@ -1,6 +1,7 @@
 <?xml version="1.0" encoding="iso-8859-1" standalone="yes"?>
 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
-<html xmlns="http://www.w3.org/1999/xhtml"><head><title>LML README</title><meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"></meta><meta content="Kevin Rosenberg 2002 <kevin@rosenberg.net>" name="Copyright"></meta><meta content="Lisp Markup Language Documentation" name="description"></meta><meta content="Kevin Rosenberg" name="author"></meta><meta content="Common Lisp, HTML, Markup Langauge" name="keywords"></meta></head><body><h1>LML Documentation</h1><h2>Overview</h2><p>LML is a Common Lisp package for generating HTML and XHTML documents. LML is authored by <a href="mailto:kevin@rosenberg.net">Kevin Rosenberg</a>. The home page for LML is <a href="http://lml.b9.com/">http://www.b9.com/</a>.</p><h2>Installation</h2><p>The easiest way to install LML is to use the <a href="http://www.debian.org/">Debian</a> GNU/Linux operating system. You can then use the command <tt>apt-get install cl-lml</tt> to automatically download and install the LML package.</p><p>On a non-Debian system, you need to have either <a href="http://cclan.sourceforge.net/">ASDF</a> or <a href="http://www.sourceforge.net/clocc/">mk-defsystem</a> 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.</p><h2>Usage</h2><p>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.</p><h2>Examples</h2><table><tbody border="1"><tr><td style="color:000;background-color:ccc;font-weight:bold;" colspan="2">Iteration</td></tr><tr><td><pre>"The square of the first five integers are"
-  (loop as x from 1 to 5 
-      doing
-      (lml-print " ~D" (* x x)))</pre></td><td> 1 4 9 16 25</td></tr></tbody></table></body></html>
\ No newline at end of file
+<html xmlns="http://www.w3.org/1999/xhtml"><head><title>LML README</title><meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"></meta><meta content="Kevin Rosenberg 2002 <kevin@rosenberg.net>" name="Copyright"></meta><meta content="Lisp Markup Language Documentation" name="description"></meta><meta content="Kevin Rosenberg" name="author"></meta><meta content="Common Lisp, HTML, Markup Langauge" name="keywords"></meta></head><body><h1>LML Documentation</h1><h2>Overview</h2><p>LML is a Common Lisp package for generating HTML and XHTML documents. LML is authored by <a href="mailto:kevin@rosenberg.net">Kevin Rosenberg</a>. The home page for LML is <a href="http://lml.b9.com/">http://www.b9.com/</a>.</p><h2>Installation</h2><p>The easiest way to install LML is to use the <a href="http://www.debian.org/">Debian</a> GNU/Linux operating system. You can then use the command <tt>apt-get install cl-lml</tt> to automatically download and install the LML package.</p><p>On a non-Debian system, you need to have either <a href="http://cclan.sourceforge.net/">ASDF</a> or <a href="http://www.sourceforge.net/clocc/">mk-defsystem</a> 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.</p><h2>Usage</h2><p>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.</p><h2>Examples</h2><table cellpadding="3" border="1"><tbody><tr><td style="color:#000;background-color:#ccc;font-weight:bold;" colspan="2">Iteration</td></tr><tr><td><pre>(i "The square of the first five integers are)"
+ (b
+   (loop as x from 1 to 5 
+     doing
+     (lml-print " ~D" (* x x))))</pre></td><td><i>The square of the first five integers are</i><b> 1 4 9 16 25</b></td></tr></tbody></table></body></html>
\ No newline at end of file
index f43c809de00b3f00b52c08b7dd076a265313a2d7..478d1d9a1a931c97d69406074df15667ecb403b6 100644 (file)
        "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))))))
       ))))