#reader(lib "docreader.ss" "scribble") @require[(lib "manual.ss" "scribble")] @require[(lib "bnf.ss" "scribble")] @require["utils.ss"] @title[#:tag "reader"]{Scribble Reader} The Scribble @|at|-reader is designed to be a convenient facility for using free-form text in Scheme code, where ``@at'' 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[#<|" ] 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 ]