Handbook
Glossary
(self-closing-start-tag-state) ( document n/f string ch/f -- document n'/f string )
Vocabulary
html5
Inputs
document
an
object
n/f
an
object
string
an
object
ch/f
an
object
Outputs
document
an
object
n'/f
an
object
string
an
object
Definition
USING:
combinators
kernel
;
IN:
html5
:
(self-closing-start-tag-state)
( document n/f string ch/f -- document n'/f string )
{
{
[
dup
62
=
]
[
drop
pick
[
set-self-closing
]
[
emit-tag
]
bi
data-state
]
}
{
[
dup
f
=
]
[
eof-in-tag
]
}
[
unexpected-solidus-in-tag
]
}
cond
;