From e1dec9790329fc7d26f5c3e39c14b34133634441 Mon Sep 17 00:00:00 2001 From: Matthew Flatt Date: Mon, 7 Jan 2008 03:50:43 +0000 Subject: [PATCH] expand Scribble-layers overview svn: r8241 original commit: 4ba06b7ae0f50c7d0053b4e98de5168240c5fda2 --- collects/scribblings/scribble/eval.scrbl | 12 +- collects/scribblings/scribble/how-to.scrbl | 8 +- collects/scribblings/scribble/layers.scrbl | 213 +++++++++++++++++++ collects/scribblings/scribble/scribble.scrbl | 77 +------ collects/scribblings/scribble/style.scrbl | 18 +- 5 files changed, 242 insertions(+), 86 deletions(-) create mode 100644 collects/scribblings/scribble/layers.scrbl diff --git a/collects/scribblings/scribble/eval.scrbl b/collects/scribblings/scribble/eval.scrbl index a0a4af9a..e6b4df83 100644 --- a/collects/scribblings/scribble/eval.scrbl +++ b/collects/scribblings/scribble/eval.scrbl @@ -15,7 +15,7 @@ defined procedures and syntax.} Like @scheme[schemeinput], except that the result for each input @scheme[datum] is shown on the next line. The result is determined by -evaluating the @scheme[quote]d form of the @scheme[datum] using he +evaluating the @scheme[quote]d form of the @scheme[datum] using the evaluator produced by @scheme[eval-expr], if provided. The @scheme[eval-expr] must produce a sandbox evaluator via @@ -27,13 +27,9 @@ evaluator is created using @scheme[make-base-eval]. Uses of @scheme[code:comment] and @schemeidfont{code:blank} are stipped from each @scheme[datum] before evaluation. -If a @scheme[datum] has the form @scheme[(#,(scheme code:line) -_code-datum (#,(scheme code:comment) ...))], then only -@scheme[_code-datum] is evaluated. - -If a datum has the form @scheme[(eval:alts #,(svar show-datum) #,(svar -eval-datum))], then @svar[show-datum] is typeset, while -@svar[eval-datum] is evaluated.} +If a @scheme[datum] has the form @scheme[(eval:alts #,(svar +show-datum) #,(svar eval-datum))], then @svar[show-datum] is typeset, +while @svar[eval-datum] is evaluated.} @defform*[[(interaction-eval datum) diff --git a/collects/scribblings/scribble/how-to.scrbl b/collects/scribblings/scribble/how-to.scrbl index 3e8122d9..bea7a7f8 100644 --- a/collects/scribblings/scribble/how-to.scrbl +++ b/collects/scribblings/scribble/how-to.scrbl @@ -5,6 +5,12 @@ @title{How to Scribble Documentation} +Although the @exec{scribble} command-line utility generates output +from a Scribble document (run @exec{scribble -h} for more +information), documentation of PLT Scheme libraries is normally built +by @exec{setup-plt}. This chapter emphasizes the @exec{setup-plt} +approach, which more automatically supports links across documents. + @;---------------------------------------- @section[#:tag "getting-started"]{Getting Started} @@ -64,7 +70,7 @@ EOS } @; ---------------------------------------- -@section{Document Syntax} +@section[#:tag "how-to:reader"]{Document Syntax} Whether in ``text'' mode or Scheme mode, @litchar["@"] in a document provides an escape to Scheme mode. The syntax of @litchar["@"] is diff --git a/collects/scribblings/scribble/layers.scrbl b/collects/scribblings/scribble/layers.scrbl new file mode 100644 index 00000000..b5a0b025 --- /dev/null +++ b/collects/scribblings/scribble/layers.scrbl @@ -0,0 +1,213 @@ +#lang scribble/doc +@(require scribble/manual + scribble/bnf + "utils.ss") + +@title{Scribble Layers} + +Scribble is made of independently usable parts. For example, the +Scribble reader can be used in any situation that requires lots of +free-form text. You can also skip Scribble's special reader support, +and instead use the document-generation structure directly. + +@; ---------------------------------------------------------------------- + +@section{Typical Composition} + +A Scribble document normally starts + +@schememod[ +scribble/doc +] + +Besides making the file a module, this declaration selects the +Scribble reader (instead of the usual Scheme reader), and it starts +the body of the in ``text'' mode. The reader layers mostly leaves text +alone, but @litchar["@"] forms can escape to S-expression mode. + +A module written as + +@verbatim[#<