Handbook
Glossary
src-printer
Vocabulary
html
.
parser
.
printer
Definition
IN:
html.parser.printer
TUPLE:
src-printer
<
html-printer
;
Methods
USING:
accessors
html.parser.printer
io
;
M:
src-printer
print-closing-tag
"</"
write
name>>
write
">"
write
;
USING:
accessors
html.parser.printer
io
kernel
;
M:
src-printer
print-opening-tag
"<"
write
[
name>>
write
]
[
attributes>>
print-attributes
]
bi
">"
write
;