]> gitweb.factorcode.org Git - factor.git/blob - basis/prettyprint/stylesheet/stylesheet-docs.factor
factor: trim using lists
[factor.git] / basis / prettyprint / stylesheet / stylesheet-docs.factor
1 ! Copyright (C) 2009 Keith Lazuka.
2 ! See http://factorcode.org/license.txt for BSD license.
3 USING: help.markup help.syntax strings words ;
4 IN: prettyprint.stylesheet
5
6 HELP: effect-style
7 { $values
8     { "effect" "an effect" }
9     { "style" "a style assoc" }
10 }
11 { $description "The stylesheet for stack effects" } ;
12
13 HELP: string-style
14 { $values
15     { "str" string }
16     { "style" "a style assoc" }
17 }
18 { $description "The stylesheet for string literals" } ;
19
20 HELP: vocab-style
21 { $values
22     { "vocab" "a vocabulary specifier" }
23     { "style" "a style assoc" }
24 }
25 { $description "The stylesheet for vocab names" } ;
26
27 HELP: word-style
28 { $values
29     { "word" word }
30     { "style" "a style assoc" }
31 }
32 { $description "The stylesheet for word names" } ;
33
34 ARTICLE: "prettyprint.stylesheet" "Prettyprinter stylesheet"
35 "The " { $vocab-link "prettyprint.stylesheet" } " vocabulary defines variables which control the way that the prettyprinter formats output based on object type."
36 { $subsections
37     word-style
38     string-style
39     vocab-style
40     effect-style
41 }
42 ;
43
44 ABOUT: "prettyprint.stylesheet"