This page exists to prove the template parser ignores quotes and template markers that appear inside C++ comments.
It also renders a literal raw-string terminator sequence safely: )".
// Regression: this comment's apostrophe must not swallow the later ?> marker.
String inline_status = "inline comment ok";
?>
/*
Regression: block comments may contain "quotes", apostrophe's, and <> markers
without confusing the parser or the generated .cpp output.
*/
String block_status = "block comment ok";
?>
Outer code scan: = outer_status ?>
Markup code island with // comment: = inline_status ?>
Markup code island with /* */ comment: = block_status ?>