Skribe: a Functional Authoring Language
Erick Gallesio Université de Nice - Sophia Antipolis Erick.Gallesio@unice.fr Manuel Serrano Inria Sophia Antipolis Manuel.Serrano@sophia.inria.fr

Abstract

This paper presents Skribe, a functional programming language for authoring documents, especially technical documents such as web pages, technical reports, and API documentation. Executing Skribe programs can produce documents in various formats, such as PostScript, PDF, HTML, Texinfo, or Unix man pages. That is, the very same Skribe program can be used to produce documents in different formats. Skribe is a full featured programming language whose syntax makes it look like a markup language à la HTML.

For the sake of the example, here is the whole Skribe source code for the paragraph above:

(p [This paper presents ,(Skribe), a functional programming language
for authoring documents, especially technical documents such as web
pages, technical reports, and API documentation. Executing Skribe
programs can produce documents in various formats, such as PostScript,
PDF, HTML, Texinfo, or Unix man pages. That is, the very same Skribe
program can be used to produce documents in different formats. Skribe
is a full featured programming language whose syntax makes it look
like a markup language à la HTML.])

Skribe can be downloaded at: http://www.inria.fr/mimosa/fp/Skribe.


1 Introduction

Skribe is a functional programming language designed for authoring documents, such as web pages or technical reports. It is built on top of the Scheme programming language [5]. Its concrete syntax is simple and it looks familiar to anyone used to markup languages. Authoring a document with Skribe is as simple as with HTML or LaTeX. Because of the conciseness of its original syntax, it is even possible to use it without noticing that it is a programming language. In Skribe, the ratio markup/text is smaller than with the other markup systems we have tested.

Executing a Skribe program with a Skribe evaluator produces a target document. It can be HTML files for web browsers, LaTeX files for high-quality printed documents, info pages for on-line documentation, etc.

Elaborated documents are generally made of fixed texts and dynamic information that is automatically generated by arbitrary computation. This computation ranges from very simple operations, such as inserting in a document the date of its last update or the number of its last revision, to operations that work on the document itself. For instance, one may wish to embed inside text some statistics about a document, such as its number of words, paragraphs, or sections. Skribe is highly suitable for these computations. A program is made of static texts (that is, constants in programming jargon) and various functions that dynamically compute (when the Skribe program runs) new texts. These functions are defined in the Scheme programming language. The Skribe syntax enables a sweet harmony between the static and dynamic components of a program.

The evaluation of a Skribe program involves several separate stages. During the first stage, the source expressions are read using the Skribe reader. These expressions are then evaluated using a conventional Scheme interpreter, which produces an internal representation of the source program. The second evaluation stage uses the internal representation and enables computations on the representation itself. That is, during the second stage, a Skribe program may compute properties about itself. The third stage produces the output document.

Authoring documents with a programming language is not a novel idea, of course, and many systems have used this approach, such as the TeX typesetting system [8]. PostScript [1] can also be classified in this category, even though it is not generally directly used for authoring, because it represents a document as a program whose execution yields a set of printable pages.

On the other side, the SGML [2] or XML [3] technologies offer a model where all the computations on a document are expressed outside of the document itself. For instance, the DOM [19] approach extols a strict dichotomy between documents and programs. This separation is presented as a virtue by its proponents, but it is our opinion that it is a heavier approach for simple documents, since it forces authors to use several different languages with different semantics and different syntax.

With the development of dynamic content web sites, a great number of intermediate solutions based on programming languages have been proposed. These solutions generally consist in giving a way to embed calls to a programming language inside a document. PHP [9] is probably the most representative of this kind. A document is a mix of text and code expressed with different syntaxes. This implies that the author/programmer must deal at the same time with both the underlying text markup system and the programming language. Furthermore, these tools cannot reify a document's structure, and they are generally limited to the production of web pages.

Our approach was initially inspired by the LAML system [12], which uses Scheme as a markup language. In LAML, as in Skribe, a document is a program and its evaluation yields its final form. Both languages permit the user to typeset documents using a single syntax.

Skribe user programs are independent of the target format. That is, using a single program, it is possible to produce an HTML version, a PostScript version, an ASCII version, etc. The Skribe API is general purpose in the sense that it is not limited to specific output formats. At the same time, independence with respect to the final document format does not limit the expressiveness of Skribe programs because specificities of particular formats are handled by dedicated back-ends. Back-ends are free to find convenient ways to implement Skribe features. For instance, intra document references are handled differently by the HTML and TeX back-ends. In HTML, they appear as hyper-links whose text is the title of the section. In TeX they appear as section numbers. An output target may not support some Skribe features. In that case, the back-end could possibly omit them (for instance, figures in ASCII formats, or dialog boxes in PostScript documents).

The rest of this document is organized as follows. In Section Skribe overview we present an overview of the Skribe system for authoring simple static documents. We show that a Skribe program looks like a document specified in a markup language. In Section Skribe, a functional authoring language, we show that Skribe is actually a full-fledged functional programming language. This section presents the main characteristics of the language and some examples. Finally, in Section Related work, we compare Skribe with other functional programming languages used for authoring documents.


2 Skribe overview

This section presents an overview of the Skribe language. First, the syntax is described in Section Sk-expressions. Then, in Section Skribe, a markup language, the structure of a document is presented.

2.1 Sk-expressions

A Skribe document is a list of expressions (Sk-expression henceforth) that are extended S-expressions [11]. An Sk-expression is:

  • An atom, including a string or a number, ex: "hello world!", 42.
  • A list of Sk-expressions, ex: (list "hello" (bold "world") "!")
  • A text, ex: [hello ,(bold [world])!]

Atomic expressions and lists are regular Scheme expressions. A text is a sequence of characters enclosed inside square brackets. This is the sole extension to the standard Scheme reader. The bracket syntax is similar to the standard quasiquote Scheme construction, which supports complex lists by automatically quoting the components of the list. It is to be used in conjunction of the comma operator that unquotes expressions. For instance, the Scheme form:

`(compute pi = ,(* 4 (atan 1)))

is equivalent to the expression:

(list 'compute 'pi '= (* 4 (atan 1)))

which evaluates to:

(compute pi = 3.1415926535898)

The Skribe bracket form collects all the characters between the brackets in a list of characters strings. Computation inside brackets is triggered by the character sequence ",(". For instance, the text:

[text goodies: ,(bold "bold") and ,(it "italic").]

is parsed by the Skribe reader as:

(list "text goodies: " (bold "bold") "and" (it "italic") ".")

The Skribe syntax is unobtrusive, and easy to type with an editor aware of Lisp-like syntax, such as Emacs. We have designed the Skribe syntax so that it as unobtrusive as possible. We have found of premium importance to minimize the weight of meta information when authoring documents. A complex syntax would prevent use by non computer scientists. Documents expressed in Skribe are also generally shorter than their counterpart expressed in classical formatting languages. For instance, the size of the Skribe source files of this paper is about 52,500 characters long, and running it through Skribe produces 76,200 characters in LaTeX and 0 characters in HTML. Although it is somehow unfair to compare hand-written code against generated ones, these statistics hint at the compactness of Skribe documents.

2.2 Skribe, a markup language

In this section, we present how to build a document using Skribe, and we show how programming skill is not needed to write a document. In fact, non-programmer authors can view Skribe as a simple document formatting system, such as HTML, LaTeX, or nroff [14].

Skribe provides an extensive set of pre-defined markups, which roughly correspond to HTML markups. The goal of this section is to give an idea of the look and feel of this system. It will avoid the tedious presentation of an extensive enumeration of all the markups available. Interested readers can refer to the complete manual of Skribe which is available at http://www.inria.fr/mimosa/fp/Skribe.

2.2.1 Skribe Markups

Skribe markups resemble XML elements. In Skribe, the attributes are represented by keywords (identifiers whose first character is a colon). Keywords have been introduced by DSSL [4], the tree manipulation language associated to SGML. The following XML expression:

<elmt1 att1="v1" att2="v2">
   Some text <elmt2>for the example</elmt2>
</elmt1>

is represented in Skribe as:

(elmt1 :att1 v1 :att2 v2 [Some text ,(elmt2 [for the example])])

2.2.2 Document Structure

Among the Sk-expressions that compose a Skribe document, the document Sk-expression serves a special purpose, because it is used to represent the complete document. All the subdivisions of a document must appear inside the document Sk-expression. So, the general structure of a Skribe document looks like:

(document :title <sk-expr> :author <sk-expr>
  (abstract <sk-expr>)
  ...
  (include "introduction-section.skb")
  ...
  (section :title <sk-expr> 
     ...
     (subsection :title <sk-expr>)
     ...
     (subsection :title <sk-expr>)
     ...)
   ...
   (section :title <sk-expr>)
   ...
   (include "conclusion-section.skb"))

As this example shows, all of the sectioning components of a document are embedded in their containing component (i.e., sections inside documents, subsections inside sections, and so on). Large documents can be split into several files by means of include forms. The strict nesting of document components is particularly useful for document introspection, as we will show in Section Resolve.

2.2.3 Skribe standard library

Skribe provides with the usual facilities for text processing. Some of these are presented here. Skribe provides the usual text ornaments (bold, italic, underline) and list environments (itemization, enumeration, and description). For instance, the following expression:

(itemize (item [A first item.])
         (item [A ,(bold "second") one.])
         (item (description
                 (item :key (bold "foo") [is a usual Lisp identifier.])
                 (item :key (bold "bar") [is another one.])))
         (item (enumerate (item "One.") 
                          (item "Two."))))

produces the following output text:

  • A first item.
  • A second one.
  • foo
    is a usual Lisp identifier.
    bar
    is another one.
    1. One.
    2. Two.

The Skribe standard library also offers the usual tools for inter and intra document references, footnotes, tables, figures, etc. For instance,

(itemize 
   (item [A reference to the subsection 
          ,(ref :subsubsection "Skribe standard library").])
   (item [A reference to a URL:
          ,(tt (ref :url (skribe-url))).])
   (item [A reference to the 
          ,(ref :figure "skribe-eval").])
   (item [A footnote 
          ,(footnote [This is a ,(Skribe) footnote.]).]))

produces the following output text:

Skribe provides also an original construction, the program markup, to pretty-print codes or algorithms. In contrast with other systems, such as LaTeX, there is no need in Skribe to use external pre-processors, such as SLaTeX [16] and Lisp2TeX [15] for pretty-printing programs inside texts. The program form takes as an option the language in which the code is expressed, and its evaluation yields a form that is the pretty-printed version of this code. For instance, the following Sk-expression:

(program :language C :file "src/C-code.c")

produces the following output:

1: int main(int argc, char **argv) {
2:   /* A variant of a classical C program */
3:   printf("Hello, Skribe\n"); 
4:   return 0;
5: }

if the C program source is located in file src/C-code.c.


3 Skribe, a functional authoring language

In addition to being a markup language (see Section Skribe, a markup language), Skribe is also a functional programming language. We have chosen to base Skribe on Scheme partly because the Scheme syntax is close to traditional markup languages. Like XML, Scheme syntax is based on the representation of trees. Skribe's modifications of the Scheme grammar are limited and simple, and merely improve Scheme to make it more suitable for representing literal text.

Like Scheme, Skribe relies on dynamic type checking. Unlike XML, it is not designed for supporting static verification of documents. The flexibility of dynamic types eases the production of dynamic texts. In particular, as illustrated in Section Sk-expressions, an Sk-expression can be a list whose elements are of different types. The first element of such a list could be a character string, and the next one a number. This generality enables compact representation of texts.

Skribe documents are programs, including the examples of the Section Skribe overview. Executing each program produces a target document, such as HTML pages or PostScript texts. In the rest of this article, to avoid the confusion between the source document and the output documents, we refer to the former as source programs or programs, and we refer to the latter as output documents or documents.

The rest of this section is organized as follows. First, in Section Skribe functions we detail the role of functions in the Skribe programming language. Then, in Section The Skribe evaluator we present the Skribe evaluation model. We conclude in Section Programming examples with examples.

3.1 Skribe functions

Functions are ubiquitous in Skribe. They are the only means for defining the syntactic Skribe elements. For instance, functions are used to define convenience macros like the ones supported by most typesetting systems. In its simplest form, a macro is just a name that is expanded into, or replaced with, a text that is part of the produced document. Macros are implemented in Skribe by the means of functions that produce Sk-expressions. For instance, a macro defining the typesetting of the word "Skribe" is used all along this paper. It is defined as follows:

(define (Skribe)
   (sc "Skribe"))

It can be used in a Sk-expression such as:

[This text has been produced by ,(Skribe).]

which produces the following output:

This text has been produced by Skribe.

It may also happen that a Skribe function is used in a more complex way. Instead of replacing a source expression with another, it may introduce a complex data structure, called an Sk-ast (see Section The Skribe evaluator), representing a whole document or a fragment of a document. In this case, the function plays the same role as a markup in languages such as XML or HTML. The Skribe functions implementing the standard library (see Section Skribe standard library) fall in this category.

In addition to naturally implemeting markups and macros, Skribe functions have another strength: they expose a single formalism for specifying the static, (i.e., declared as-is) and dymamic, (i.e., computed) parts of the documents. This combination is the main originality and the main strength of Skribe in which it is particularly easy to merge texts and computations for authoring documents. Moreover, because Skribe is a full-fledged programming language, arbitrarily complex computations can be easily programmed. This expressiveness is illustrated by the next example, which is inspired by the Skribe Web page. The example generates a download table that contains the name of the tar files containing the Skribe source code. The table also contains the size of each file and an estimate of its download time depending on the network speed.

Estimated download times
size56kb512kb10mb
skribe1.2c.tar.gz245k449s49s2s
skribe1.2b.tar.gz254k464s51s3s

This text is automatically produced by the user-defined markup directory-download. The function implementing this markup selects the files with the suffix "tar.gz" in the dir directory. It then sorts the files into decreasing alphabetic order. Using the size of these sorted files, it computes the estimated download times, which are used for filling a table with the local function file-download.

(define (directory-download dir base)
   (define (eta size speed)
      (format "~as" (/ size (* speed 10))))
   (define (file-download file)
      (let ((sz (file-size file)))
         (tr (td (tt (basename file)))
            (td (/ sz 1024) "k")
            (td (eta sz 56)) (td (eta sz 512)) (td (eta sz 10240)))))
   (table :cellspacing 1 :border 1 :frame 'border :rules 'all
      (tr (td :colspan 2) (th :colspan 3 (it "Estimated download times")))
      (tr (td) (th "size") (th "56kb") (th "512kb") (th "10mb"))
      (map file-download
           (sort (filter (lambda (x) 
                            (and (prefix? x base) (suffix? x "tar.gz")))
                         (directory->list dir))
                 string>?))))

This example illustrates the strength of a full-fledged language for authoring documents, because it relies on computations that are familiar to general purpose languages (scanning files on disk, fetching files size, etc.) that are generally unavailable in domain-specific languages.

3.2 The Skribe evaluator

In this section, we detail how source programs are evaluated to produce output documents. In particular, we present the different execution times that take place during this process.

Most documents contain self-references. Self-references are references used in a document to point to subparts of itself. These references are used for indexes, bibliographic citations, table of contents, references to figures, chapters, and so on. On the one hand, these constructions can be built-in in an authoring system or, on the other hand, they can be implemented using a general mechanism that exposes the whole document as a data structure and that supports references to itself. The latter is Skribe's solution. In the rest of this text, we refer to any computation involving self-references as document introspection or introspection.

Self-references can be forward or backward. Hence, prior to introspection, the data structure representing the whole document must be built. To support this phasing, a Skribe program evaluates in two steps: one for building the data structure and one for resolving the self-references. Further, we have found it useful to add a third pass, which is devoted to the generation of the output document. Figure 1 illustrates the three stages for evaluating a Skribe program.



Fig. 1: Evaluation stages

The first stage (named eval in Figure 1) parses the source program a builds an abstract syntax tree (henceforth AST). This stage roughly corresponds to a Scheme evaluator augmented with additional library functions. Because of its proximity with Scheme, this stage is not detailed here.

The second stage (Resolve) is presented Section Resolve. The third stage (Write) is presented Section Write.

3.2.1 Resolve

The second stage (Resolve) of the Skribe evaluation process is in charge of resolving the self-references. These references can point to bibliographic entries, index entries, URL, sections, figures, etc. They are introduced in the source program by the ref function. Here is an excerpt of a Skribe program that contains two references, one to a section and one to a figure:

...
(section :title "Example of references"
   (p [Other examples can be found in Section 
,(ref :section "Other examples") and in Figure
,(ref :figure "A big example").]))
...

The ref library function relies on the lower level function unresolved, which introduces nodes of type unresolved in the AST. Each of these nodes contains a function ρ, which accepts as argument the unresolved node itself. For the sake of the example, here is a simplified implementation of the ref function restricted to sections.

(define (ref-section sect)
   (let ((rho (lambda (node)
                 (let ((root (ast-root node)))
                    (section-number (find-section-from-title root sect))))))
      (unresolved rho)))

The argument sect is the title of the searched section. The functions ast-root, section-number, find-section-from-title, and unresolved are part of the Skribe library. As such they can be used in user programs (see example User programmed self-references).

The purpose of the Resolve stage is to eliminate the unresolved nodes from the AST. To that end, it rewrites the AST by replacing each node ν of type unresolved with the result of ρ(ν). Since ρ(ν) may introduce new unresolved nodes, Resolve requires a fixpoint iteration, and the user is ultimately responsible for ensuring that the fixpoint exists.

3.2.2 Write

After an AST is pruned of any unresolved nodes, it can be traversed to produce the output document, hence the Write stage. The Write stage traverses the AST, and at each node, it selects the appropriate writer. This selection depends on the type of the node and the format of the output document.

Skribe writers output the external representations of nodes. For instance, the writer in charge of outputting the HTML representation of bold nodes surrounds the HTML output of the node with <b> and </b>. A writer is a data structure containing three functions: :before, :action, and :after. These functions are applied before, during and after processing the node. Writers are introduced by the define-writer form. For instance, here is the definition of the Skribe writer handling bold nodes in HTML.

(define-writer 'bold 'html
   :before (lambda (n e) (display "<b>"))
   :action (lambda (n e) (emit (markup-body n) e))
   :after (lambda (n e) (display "</b>")))

The function emit actually implements the the Write stage. The function markup-body is part of the Skribe library, and it returns the content of a node. The functions :before, :action, and :after accept two arguments: n, which is the node to be written, and e, which is the writing engine or writing context.

This scheme of writer definitions is so frequent (print strings and recursively emit the node body) that the previous writer can also be defined with the more compact, equivalent definition:

(define-writer 'bold 'html :before "<b>" :after "</b>")

A set of writers constitutes a Skribe back-end. The standard Skribe distribution contains back-ends for popular formats, but users can also implement their own back-ends.

The second parameter of the three writer functions enables the writer to change locally the output representation of markups. This facility is used in the following example for implementing the markup emph. In this implementation, emphasized text is represented with an italic font, whereas nested emphasized text is represented with a bold font:

(define-writer 'emph 'html
   :before "<i>" 
   :action (lambda (n e)
              (let ((ne (extend-engine e
                            (writer 'emph :before "<b>" :after "</b>"))))
                 (emit (markup-body n) ne)))
   :after "</i>")

The function extend-engine extends the given engine with a new writer. This new engine is used to recursively traverse the node that is emphasized. Note that this implementation does not conform to standard conventions, because it does not alternate italic and bold. This can be easily fixed by replacing the :action procedure of the emph writer with a recursive definition:

(define-writer 'emph 'html
   :before "<i>"
   :action (letrec ((rec (lambda (b)
                            (lambda (n e)
                               (let ((ne (extend-engine e 
                                            (writer 'emph 
                                               :before (if b "</i><b>" "</b><i>")
                                               :action (rec (not b))
                                               :after (if b "</b><i>" "</i><b>")))))
                                  (emit (markup-body n) ne))))))
              (rec #t))
   :after "</i>")

In this new writer definition, each nested invocation of emph extends the current context with a new definition for the :before, :action, and :after procedures.

3.3 Programming examples

Among the Skribe programs of Section Skribe functions, the first one illustrates how functions can be used to implement text macros. The second one shows that this single mechanism can also be used for introducing computed texts. The computations involved in these examples take place during the first stage of the evaluation of Skribe programs. In this section, we present example of computations that take place during the later stages, namely Resolve and Write stages.

3.3.1 User programmed self-references

As presented in Section Resolve user functions can be associated with unresolved nodes. In this example, we take benefit of this facility for implementing a custom table of contents. In the following example, we represent the table of contents as a tree. Applied to the present paper, it produces the tree of Figure 2.



+-- Introduction
+-- Skribe overview
|   +-- Sk-expressions
|   +-- Skribe, a markup language
|   |   +-- Skribe Markups
|   |   +-- Document Structure
|   |   +-- Skribe standard library
+-- Skribe, a functional authoring language
|   +-- Skribe functions
|   +-- The Skribe evaluator
|   |   +-- Resolve
|   |   +-- Write
|   +-- Programming examples
|   |   +-- User programmed self-references
|   |   +-- Blending output formats
+-- Related work
|   +-- SGML and XML
|   +-- LAML
|   +-- BRL
|   +-- Wash
+-- Conclusion and future work



Fig. 2: Custom table of contents.

This tree is built by the function show-tree which takes an Sk-ast as argument. It recursively walks the Sk-ast according to a depth-first traversal.

(define (show-container m s f)
  (list m
        "+-- "
        (f (container-title s))
        "\n"
        (map (lambda (x) (show-container (string-append m "|   ") x it))
             (containers-in s))))

(define (show-tree t)
  (map (lambda (x) (show-container "" x underline)) (containers-in t)))

The functions show-tree and show-container use Scheme functions and the following Skribe functions: underline, it, and containers-in (which returns the list of sub-containers of an Sk-ast).

The table of contents must be computed during the Resolve stage:

(define (my-document-toc)
   (unresolved (lambda (n) (show-tree (ast-root n)))))

The function my-document-toc introduces an unresolved node whose associated function calls the previously defined show-tree function.

3.3.2 Blending output formats

This example illustrates the computations that may take place during the Write stage. The Sk-ast is back-end independent and the specificities of output formats are only specified in the Write stage.

Let's assume the following itemize Sk-ast:

(define ast 
   (itemize 
      (item [foo])
      (item (bold [bar]))))

Used, as is, in the following document, it produces:

  • foo
  • bar

The LaTeX source of this itemize is:

\begin{itemize}
 \item foo
 \item {\textbf{bar}}
\end{itemize} 

The HTML source of this itemize is:

<ul class="itemize"><li>foo</li>
<li><strong>bar</strong></li>
</ul>

We show in the rest of this section how the previous LaTeX and HTML expressions are automatically generated from ast. For this, we introduce the new proc markup:

(define (proc body procedure)
   (make-markup 'proc procedure body))

A proc node contains a text (body) and a procedure (procedure). To invoke the procedure during the Write stage, we add the following writer definition:

(define-writer 'proc 'base
   :action (lambda (n e)
              (output ((markup-procedure n) (markup-body n) e) e)))

The base engine is the root of the engines. That is all other engines inherit from it. Let's assume a Skribe execution environment where two engines, html-engine and latex-engine have been loaded for extending the base engine with appropriate writers for the two formats. The procedure associated with the proc node is retrieved by the Skribe function markup-procedure. The functions LATEX and HTML which generate LaTeX and HTML sources of an Sk-ast are defined as:

(define (LATEX body)
   (proc body (lambda (n engine)
                 (with-output-to-string 
                    (lambda () (output n latex-engine))))))

(define (HTML body)
   (proc body (lambda (n engine)
                 (with-output-to-string 
                    (lambda () (output n html-engine))))))

Given the LATEX and HTML functions, the LaTeX and HTML expressions above are produced by expressions as simple as:

(LATEX ast)
(HTML ast)

This can be generalized. We can use the HTML and LATEX functions to generate the LaTeX source of the HTML expression:

$<$ul class="itemize"$>$$<$li$>$foo$<$/li$>$ %
$<$li$>$$<$strong$>$bar$<$/strong$>$$<$/li$>$ %
$<$/ul$>$

Which has been produced by:

(LATEX (HTML ast))

The LaTeX source of the LaTeX source of the HTML source of ast is:

\$$<$\$ul class="itemize"\$$>$\$\$$<$\$li\$$>$\$foo\$$<$\$/li\$$>$\$ \% %
\$$<$\$li\$$>$\$\$$<$\$strong\$$>$\$bar\$$<$\$/strong\$$>$\$\$$<$\$/li\$$>$\$ \% %
\$$<$\$/ul\$$>$\$

...


5 Conclusion and future work

Skribe is a full-fledged programming language for authoring documents. It combines the expressiveness of a functional programming language and the declarative flavor of a markup language. Skribe relies on an original syntax that makes it look familiar to anyone who is used to markup languages, such as HTML.

Skribe has been deployed since 2002, and it is used daily for producing all kinds of documents, including large HTML and PostScript documents. For instance, this present paper, the whole web page http://www.inria.fr/mimosa/fp/Bigloo, and the documentation that it contains are implemented in Skribe.

Even if Skribe is already deployed and used, it still needs some improvements. In particular, the current version is not well suited for mathematical formulas. For bridging this gap, we plan to add support for mathematics formulas using a LaTeX like syntax. The LaTeX back-end will consist in a straightforward mapping. The HTML back-end will be based on the MathML. Another area that deserves attention is the execution of Skribe programs in embedded applications. This point is currently studied. We are working on the design and implementation of a Skribe-aware web server. An early prototype seems promising.


6 References

[1]Adobe System Inc. -- PostScript Language Reference Manual -- Addison-Wesley, Readings, Massachusetts, USA, 1985.
[2]Goldfarb, C. -- The SGML Handbook -- Oxford University Press, UK, 1991.
[3]Harold, E.R. and Means, W.S. -- XML in a nutshell -- O'Reilly Associates, USA, Jan, 2001.
[4]ISO/IEC -- Information technology, Processing Languages, Document Style Semantics and Specification Languages (DSSSL) -- 10179:1996(E), ISO, 1996.
[5]Kelsey, R. and Clinger, W. and Rees, J. -- The Revised(5) Report on the Algorithmic Language Scheme -- Higher-Order and Symbolic Computation, 11(1), Sep, 1998.
[6]Kiselyov, O. -- Implementing Metcast in Scheme -- Scheme workshop, Montréal, Canada, Sep, 2000.
[7]Kiselyov, O. -- A better XML parser through functional programming. -- Practical Aspects of Declarative Languages, Portland, Oregon, USA, Jan, 2002.
[8]Knuth, D. -- The TEXbook, -- Addison-Wesley, Readings, Massachusetts, USA, 1986.
[9]Lerdorf, R. -- PHP Pocket Reference -- O'Reilly Associates, USA, Jan, 2000.
[10]Lewis, B -- BRL Reference Manual -- 2002.
[11]McCarthy, J. -- Recursive functions of symbolic expressions and their computation by machine -- I -- Communications of the ACM, 3(1), 1960, pp. 184--195.
[12]Nørmark, K. -- Programming World Wide Web Pages in Scheme -- Sigplan Notices, 34(12), 1999.
[13]Nørmark, K. -- Programmatic WWW authoring using Scheme and LAML -- The Eleventh International World Wide Web Conference, Honolulu, Hawaii, USA, May, 2002.
[14]Ossana, J. -- UNIX Programmer's manual: Supplementary Documents -- Holt, Rinehart and Winston, 1982, pp. 196--229.
[15]Queinnec, C. -- Literate programming from Scheme to TeX -- LIX RR 93.05, Laboratoire d'Informatique de l' Polytechnique, 91128 Palaiseau Cedex, France, Nov, 1993.
[16]Sitaram, D. -- SLaTeX.
[17]Thiemann, P. -- Modeling HTML in Haskell -- Practical Aspects of Declarative Languages, 2000, pp. 263--277.
[18]Wallace, M. and Runciman, C. -- Programming Languages as Operating Systems ( or Revenge of the Son of the Lisp Machine) -- Int'l Conf. on Functional Programming, Paris, France, 1999.
[19]World Wide Web Consortium -- Document Object Model (DOM) Level 1 Specification -- W3C Recommendation, Oct, 1998.
[20]World Wide Web Consortium -- XEXPR - A Scripting Language for XML -- W3C Note, Nov, 2000.
[21]World Wide Web Consortium -- XQuery - XML Query (XQuery) Requirements -- W3C Working draft, Jun, 2003.




1: This is a Skribe footnote.

This Html page has been produced by Skribe.
Last update Thu Apr 14 20:01:12 2005.