2013-04-25 16:26:36 -04:00
! Copyright (C) 2009 Keith Lazuka.
2009-09-09 15:27:49 -04:00
! See http://factorcode.org/license.txt for BSD license.
2014-05-23 23:20:15 -04:00
USING: help.markup help.syntax kernel strings words ;
2009-09-09 15:27:49 -04:00
IN: prettyprint.stylesheet
HELP: effect-style
{ $values
{ "effect" "an effect" }
{ "style" "a style assoc" }
}
2010-01-25 07:01:12 -05:00
{ $description "The stylesheet for stack effects" } ;
2009-09-09 15:27:49 -04:00
HELP: string-style
{ $values
2014-05-23 23:20:15 -04:00
{ "str" string }
2009-09-09 15:27:49 -04:00
{ "style" "a style assoc" }
}
2010-01-25 07:01:12 -05:00
{ $description "The stylesheet for string literals" } ;
2009-09-09 15:27:49 -04:00
HELP: vocab-style
{ $values
{ "vocab" "a vocabulary specifier" }
{ "style" "a style assoc" }
}
2010-01-25 07:01:12 -05:00
{ $description "The stylesheet for vocab names" } ;
2009-09-09 15:27:49 -04:00
HELP: word-style
{ $values
2014-05-23 23:20:15 -04:00
{ "word" word }
2009-09-09 15:27:49 -04:00
{ "style" "a style assoc" }
}
2010-01-25 07:01:12 -05:00
{ $description "The stylesheet for word names" } ;
2009-09-09 15:27:49 -04:00
2010-01-25 07:01:12 -05:00
ARTICLE: "prettyprint.stylesheet" "Prettyprinter stylesheet"
"The " { $vocab-link "prettyprint.stylesheet" } " vocabulary defines variables which control the way that the prettyprinter formats output based on object type."
2009-10-01 15:56:36 -04:00
{ $subsections
word-style
string-style
vocab-style
effect-style
}
2009-09-09 15:27:49 -04:00
;
ABOUT: "prettyprint.stylesheet"