Handbook
Glossary
(attribute-value-double-quoted-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:
accessors
combinators
kernel
;
IN:
html5
:
(attribute-value-double-quoted-state)
( document n/f string ch/f -- document n'/f string )
{
{
[
dup
34
=
]
[
drop
after-attribute-value-quoted-state
]
}
{
[
dup
38
=
]
[
drop
[
\
attribute-value-double-quoted-state
>>return-state
]
2dip
character-reference-state
]
}
{
[
dup
0
=
]
[
unexpected-null-character
]
}
{
[
dup
f
=
]
[
eof-in-tag
]
}
[
reach
push-attribute-value
attribute-value-double-quoted-state
]
}
cond
;