Masterminds / html5-php

An HTML5 parser and serializer for PHP.
http://masterminds.github.io/html5-php/
Other
1.55k stars 114 forks source link

InstructionProcessor doesn't work in text mode. #227

Open withinboredom opened 1 year ago

withinboredom commented 1 year ago

If the tokenizer enters 'text mode' then no other tags are parsed. I don't know the spec well enough to know whether it should or not.

Example:

<!DOCTYPE html>
<html lang="<?l en ?>"> <-- not processed
<head>
    <title><?s Title ?></title> <-- not processed
</head>
<body>
<p><?s hello world ?></p> <-- processed
</body>
</html>

possibly related: #211