Handbook
Glossary
(rawtext-less-than-sign-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
:
(rawtext-less-than-sign-state)
( document n/f string ch/f -- document n'/f string )
{
{
[
dup
47
=
]
[
drop
pick
reset-temporary-buffer
rawtext-end-tag-open-state
]
}
[
[
60
reach
emit-char
]
dip
(rawtext-state)
]
}
cond
;