Handbook
Glossary
(cdata-section-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
:
(cdata-section-state)
( document n/f string ch/f -- document n'/f string )
{
{
[
dup
93
=
]
[
drop
cdata-section-bracket-state
]
}
{
[
dup
f
=
]
[
drop
eof-in-cdata
pick
emit-eof
]
}
[
reach
emit-char
cdata-section-state
]
}
cond
;