Handbook
Glossary
compile-element ( element -- )
Vocabulary
html
.
templates
.
chloe
.
compiler
Inputs
element
an
object
Outputs
None
Definition
USING:
combinators
kernel
strings
xml.data
;
IN:
html.templates.chloe.compiler
:
compile-element
( element -- )
{
{
[
dup
chloe-tag?
]
[
compile-chloe-tag
]
}
{
[
dup
[
tag?
]
[
xml?
]
bi
or
]
[
compile-tag
]
}
{
[
dup
string?
]
[
compile-string
]
}
{
[
dup
comment?
]
[
drop
]
}
[
compile-misc
]
}
cond
;