Update domain name to kpe.io
[lml.git] / package.lisp
1 ;;;; -*- Mode: LISP; Syntax: ANSI-Common-Lisp; Base: 10 -*-
2 ;;;; *************************************************************************
3 ;;;; FILE IDENTIFICATION
4 ;;;;
5 ;;;; Name:          package.cl
6 ;;;; Purpose:       Package file for Lisp Markup Language
7 ;;;; Programmer:    Kevin M. Rosenberg
8 ;;;; Date Started:  Aug 2002
9 ;;;;
10 ;;;; $Id$
11 ;;;;
12 ;;;; This file, part of LML, is Copyright (c) 2002 by Kevin M. Rosenberg
13 ;;;;
14 ;;;; LML users are granted the rights to distribute and use this software
15 ;;;; as governed by the terms of the GNU General Public License v2
16 ;;;; (http://www.gnu.org/licenses/gpl.html)
17 ;;;; *************************************************************************
18
19 (in-package #:cl-user)
20
21 (defpackage #:lisp-markup-language
22   (:use #:common-lisp)
23   (:nicknames #:lml)
24   (:export
25
26    ;; base.lisp
27    #:*print-spaces*
28    #:reset-indent
29    #:with
30    #:print-page
31    #:page
32    #:lml-format
33    #:lml-print
34    #:lml-princ
35    #:lml-write-char
36    #:lml-write-string
37    #:lml-print-date
38    #:*html-output*
39
40    ;; files.lisp
41    #:with-dir
42    #:process-dir
43    #:lml-load
44    #:include-file
45
46    ;; stdsite.lisp
47    #:print-std-page
48    #:std-page
49    #:std-body
50    #:std-head
51    #:titled-pre-section
52
53    ;; downloads.lisp
54    #:std-dl-page
55    #:full-dl-page
56
57    ;; utils.lisp
58    #:lml-quit
59    #:lml-cwd
60 ))