legacy-dotfiles/emacs.d/nxhtml/tests/in/bug569742-master-end.html
Tom Willemsen 94d2fc1815 Django, org
* Added nxhtml, mostly for django support.

  * Changed some org settings.
2011-03-07 09:04:49 +01:00

37 lines
556 B
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

From EmacsWiki:
I have chunk problems with 1.99. This works, it detects the PHP and JS chunks properly:
<?
$stuff = <<<EOTHTML
<script type="text/javascript">
//<![CDATA[
var stuff;
//]]>
</script>
EOTHTML;
However if I dont close the inner chunk before EOTHTML, because I want to add some conditional code after it in PHP then it thinks the part of the buffer after EOTHTML is still in JS mode which is not good:
<?
$stuff = <<<EOTHTML
<script type="text/javascript">
//<![CDATA[
var stuff;
EOTHTML;