Handbook
Glossary
html-prettyprinter
Vocabulary
html
.
parser
.
printer
Definition
IN:
html.parser.printer
TUPLE:
html-prettyprinter
<
html-printer
;
Methods
USING:
accessors
html.parser.printer
io
kernel
namespaces
sequences
;
M:
html-prettyprinter
print-closing-tag
[
{
"br"
"img"
}
member?
[
#indentations
dec
]
unless
]
[
indent
"</"
write
name>>
write
">\n"
write
]
bi
;
USING:
accessors
html.parser.printer
io
kernel
namespaces
sequences
;
M:
html-prettyprinter
print-opening-tag
name>>
[
indent
"<"
write
write
">\n"
write
]
[
{
"br"
"img"
}
member?
[
#indentations
inc
]
unless
]
bi
;
USING:
accessors
html.parser.printer
io
sequences
unicode
;
M:
html-prettyprinter
print-text-tag
text>>
[
blank?
]
trim
[
indent
write
"\n"
write
]
unless-empty
;