Handbook
Glossary
(numeric-character-reference-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
sequences
;
IN:
html5
:
(numeric-character-reference-state)
( document n/f string ch/f -- document n'/f string )
{
{
[
dup
"xX"
member?
]
[
reach
push-temporary-buffer
hexadecimal-character-reference-start-state
]
}
[
(decimal-character-reference-start-state)
]
}
cond
;