Handbook
Glossary
(after-attribute-value-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:
combinators
kernel
sequences
;
IN:
html5
:
(after-attribute-value-quoted-state)
( document n/f string ch/f -- document n'/f string )
{
{
[
dup
"\t\n\f "
member?
]
[
drop
before-attribute-name-state
]
}
{
[
dup
47
=
]
[
drop
self-closing-start-tag-state
]
}
{
[
dup
62
=
]
[
drop
pick
emit-tag
data-state
]
}
{
[
dup
f
=
]
[
eof-in-tag
]
}
[
missing-whitespace-between-attributes
(before-attribute-name-state)
]
}
cond
;