X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;f=2%2Fbase.lisp;h=3105af84ffe03582be33f657d22472d0eebbfdba;hb=21657b49ea30c2d34d598258257fea8ec06fff31;hp=944df66f5e8369b74fea4daf89356af6c24a46c0;hpb=096b456fe920373f3b54fbe47f10f3e41c4fe925;p=lml.git diff --git a/2/base.lisp b/2/base.lisp index 944df66..3105af8 100644 --- a/2/base.lisp +++ b/2/base.lisp @@ -7,7 +7,7 @@ ;;;; Programmer: Kevin M. Rosenberg ;;;; Date Started: Aug 2002 ;;;; -;;;; $Id: base.lisp,v 1.1 2003/06/20 04:12:29 kevin Exp $ +;;;; $Id: base.lisp,v 1.2 2003/06/20 04:46:54 kevin Exp $ ;;;; ;;;; This file, part of LML, is Copyright (c) 2002 by Kevin M. Rosenberg ;;;; @@ -69,3 +69,13 @@ ,@body)))) + +(defmacro alink (url desc) + `(html + ((:a :href ,url) ,desc))) + +(defmacro alink-c (class url desc) + `(html + ((:a :class ,class :href ,url) ,desc))) + +(export '(alink alink-c))