I have been working with Notepad++ for web development for a few months now. As I continue to work with it, I am more and more pleased with it's setup. One thing really bothers me, though. When working with a JQuery template, not all of the contents of the script are recognized. The program will highlight and collapse only up until the first closing tag contained within the script tag.
For example:
<script id="itemTemplate" type="text/html">
<li class="row">
<div class="rowTextContainer">
<div class="rowTitle">${title}</div>
<div class="rowSubTitle">${subTitle}</div>
</div>
</li>
</script>
The above code would collapse down to:
<script id="itemTemplate" type="text/html">
<div class="rowSubTitle">${subTitle}</div>
</div>
</li>
</script>
Which is certainly not correct. Is there a fix or at least a workaround for this issue? I've just updated to version 5.9 and this is still a problem for me.