DisclaimerUnofficial, and not affiliated with Anthropic. Nearly all of this is read straight out of what ships: npm bundles, captured prompts, published docs. Anthropic's own notes go in verbatim, marked as theirs. The rest is my reading, and every entry carries the strings behind it. If one looks wrong, vote it down and say why.
Published-page markup parser no longer shares regex state between parses
You'll notice
Useful2Signal2
Artifacts
Two published artifact pages parsed at once can no longer corrupt each other's validation.
What's wrong with this entry?
Anonymous. No account, no email.
What
The parser that decides what markup a published artifact page may contain now builds its matching state fresh per call, closing a class of bug where two parses running together could corrupt each other's position. What is accepted is unchanged: a doctype, the same base href shape, utf-8 charset only, and the expected root mount element.
Evidence
<!doctype[ \t\n\f\r]+html[ \t\n\f\r]*>
Strings lifted out of the shipped bundle, so the claim above can be checked against them.