Gedit: PHP의 JavaScript에서 자체 닫는 XHTML 태그의 에코 구문 강조 표시

Gedit: PHP의 JavaScript에서 자체 닫는 XHTML 태그의 에코 구문 강조 표시

생식:

  • Gedit에서 새 파일을 열고 구문 강조 언어(오른쪽 하단에 위치)를 PHP.
  • <script>태그에 자바스크립트를 작성하세요.
  • <script>태그 내에서 자체 닫는 태그를 사용하여 일부 XHTML을 에코합니다.
  • 다음의 모든 코드에는 더 이상 구문 강조 기능이 없습니다.

또는 다음 위치에 붙여넣으세요.

<?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';
?>

이제 모든 자동 닫힘 태그를 해당하는 HTML 4 태그(예: <input></input>)로 대체하여 문제를 해결할 수 있으므로 이는 큰 문제가 아니지만, 다른 사람이 이 문제를 처리했는지 궁금합니다.

관련 정보