Reprodução:
PHP
. <script>
tags <script>
, faça eco de algumas XHTML com tags de fechamento automático Como alternativa, cole isso em:
<?php
echo 'hello - this is still syntax highlighted! <span id="foo"></span>';
?>
<script>
myApp: {
foobar: function() {
document.id('foo').set('html', '<hr />');
alert('uh-oh, what happened to the syntax highlighting? This string is no longer coloured.');
}
}
</script>
<?php
echo 'syntax highlighting returns after the closing </script> tag';
?>
Não é grande coisa, já que posso contornar isso agora mesmo, substituindo todas as tags de fechamento automático por seus equivalentes HTML 4 (por exemplo, <input></input>
), mas fiquei me perguntando se alguém lidou com esse problema ...