#reader(lib "docreader.ss" "scribble") @require[(lib "manual.ss" "scribble")] @require[(lib "bnf.ss" "scribble")] @require["utils.ss"] @title[#:tag "reader"]{The Scribble Reader} The Scribble @"@"-reader is designed to be a convenient facility for using free-form text in Scheme code, where ``@"@"'' is chosen as one of the least-used characters in Scheme code. You can use the reader via MzScheme's @schemefont{#reader} form: @schemeblock[ #, @schemefont|{ #reader(lib "reader.ss" "scribble")@{This is free-form text!} }|] Note that the reader will only read @"@"-forms as S-expressions. The meaning of these S-expressions depends on the rest of your own code. A PLT Scheme manual more likely starts with @schemeblock[ #, @schemefont{#reader(lib "docreader.ss" "scribble")} ] which installs a reader, wraps the file content afterward into a MzScheme module, and parses the body into a document using @file{decode.ss}. See @secref["docreader"] for more information. Another way to use the reader is to use the @scheme[use-at-readtable] function to switch the current readtable to a readtable that parses @"@"-forms. You can do this in a single command line: @commandline{mzscheme -Le reader.ss scribble "(use-at-readtable)"} In addition to @scheme[read] and @scheme[read-syntax], which are used by @schemefont{#reader}, the @file{reader.ss} library provides the procedures @scheme[read-inside] and @scheme[read-inside-syntax]; these @schemeid[-inner] variants parse as if starting inside a @litchar["@{"]...@litchar["}"], and they return a (syntactic) list. @section{Concrete Syntax} Informally, the concrete syntax of @"@"-forms is @schemeblock[ #, @BNF-seq[@litchar["@"] @nonterm{cmd} @litchar{[} @kleenestar{@nonterm{datum}} @litchar{]} @litchar["{"] @kleenestar{@nonterm{text-body}} @litchar["}"]] ] where all three parts after @litchar["@"] are optional, but at least one should be present. (Note that spaces are not allowed between the three parts.) @litchar["@"] is set as a non-terminating reader macro, so it can be used as usual in Scheme identifiers unless you want to use it as a first character of an identifier; in this case you need to quote with a backslash (@schemefont["\\@foo"]) or quote the whole identifier with bars (@schemefont["|@foo|"]). @schemeblock[ #, @schemefont|!{ (define |@foo| '\@bar@baz) }!|] Of course, @litchar["@"] is not treated specially in Scheme strings, character constants, etc. Roughly, a form matching the grammar above is read as @schemeblock[ (#, @nonterm{cmd} #, @kleenestar{@nonterm{datum}} #, @kleenestar{@nonterm{parsed-body}}) ] where @nonterm{parsed-body} is the translation of each @nonterm{text-body} in the input. Thus, the initial @nonterm{cmd} determines the Scheme code that the input is translated into. The common case is when @nonterm{cmd} is a Scheme identifier, which generates a plain Scheme form. A @nonterm{text-body} is either a sequence of characters without @litchar["@"] or newlines, a newline by itself, or the translation of a @at form. Note that the syntax for @at forms is the same in a @nonterm{text-body} context as in a Scheme context. A @nonterm{text-body} that isn't a @at form is converted to a string for its @nonterm{parsed-body}: @scribble-examples[ #<|" ] More simply, if you get into too much trouble with special characters in a body, then it's often a good idea to use the Scheme part, instead. @scribble-examples[ "@foo[\"}\"]" "@foo[\"@literally{}\"]" ] @; - - - - - - - - - - - - - - - - - - - - - - - - @subsubsub*section{Quoting in Body Texts} To quote braces or @at, precede them with a backslash. Note that this is an irregular use of backslash quoting! To use @litchar["\\@"] in your text, simply precede it with a backslash. The general rule is that to use N backslashes-and-a-special-character, you should precede it with one extra backslash. Any other use of a backslash (one that is not followed by more back-slashes and a special character) is preserved in the text as usual. @scribble-examples[ "@foo{b\\@ar}" "@foo{b\\\\@ar}" "@foo{b\\\\\\@ar}" "@foo{b\\@\\@ar}" "@foo{b\\ar}" "@foo{b\\\\ar}" ] @; - - - - - - - - - - - - - - - - - - - - - - - - @subsubsub*section{Newlines and Indentation} When indentation is used, all-space indentation string syntaxes are perpended to the beginning of each line. The rule for adding these string is: @itemize{ @item{A spaces-string is added to each line according to its distance from the leftmost syntax object;} @item{The first string is not prepended with indentation if it appears on the first line of output.} } @scribble-examples[ #< '' prompt, which might lead to confusing results.} } @italic{The following is likely to change.} For situations where spaces at the beginning of lines matter (various verbatim environments), you should begin a line with a @litchar["|"]. It has no other special meaning -- so to use a @litchar["|"] as the first character in the text, simply use another before it. @scribble-examples[ #< (define (important . text) @`b{@u{@big{@,@text}}}) > (important @`p{An important announcement! Read it!}) (b (u (big (p "An important announcement!" "\n" "Read it!")))) EOS ]