Handbook
Glossary
markup-declaration-open-state ( document n/f string -- document n'/f string )
Vocabulary
html5
Inputs
document
an
object
n/f
an
object
string
an
object
Outputs
document
an
object
n'/f
an
object
string
an
object
Definition
USING:
combinators
modern.slices
;
IN:
html5
:
markup-declaration-open-state
( document n/f string -- document n'/f string )
{
{
[
"--"
take-from?
]
[
comment-start-state
]
}
{
[
"DOCTYPE"
take-from-insensitive?
]
[
doctype-state
]
}
{
[
"[CDATA["
take-from-insensitive?
]
[
unimplemented*
]
}
[
incorrectly-opened-comment
]
}
cond
;