Handbook
Glossary
(before-attribute-name-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
:
(before-attribute-name-state)
( document n/f string ch/f -- document n'/f string )
{
{
[
dup
"\t\n\f "
member?
]
[
drop
before-attribute-name-state
]
}
{
[
dup
"/>"
member?
]
[
(after-attribute-name-state)
]
}
{
[
dup
f
=
]
[
(after-attribute-name-state)
]
}
{
[
dup
61
=
]
[
unexpected-equals-sign-before-attribute-name
]
}
[
reach
push-attribute
(attribute-name-state)
]
}
cond
;