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.

link|improve this question

feedback

2 Answers

up vote 3 down vote accepted
+50

Three options (increasing level of difficulty):

One is to use Language -> XML. The side effect is that the color scheme changes (but that can be fixed with settings).

Second, create your own user defined language. I created one but for some reason, syntax highlighting is not working: http://pastebin.com/BxRvbbQV

Build your own lexer

link|improve this answer
Thank the prophets, Mrchief! I think you may have won! ;-) You'll be getting the bounty if no one else can point me to a pre-existing solution. Thanks again! – BDawg Jul 12 '11 at 20:04
Actually, I'm just giving this to you now. You introduced me to a feature I completely overlooked. – BDawg Jul 12 '11 at 20:15
Glad to be of help! Which one did you overlook? On a side note, I would suggest moving the template to a script file. You will benefit by browser caching. So I guess this is an acceptable answer? :) – Mrchief Jul 12 '11 at 20:52
You bet it's acceptable! I realized I forgot to click the "accept" button about 30 seconds before you posted this, haha. I completely overlooked creating a lexer. Also, thanks for the tip! – BDawg Jul 12 '11 at 21:00
+1, awesome solution! – whoabackoff Jul 22 '11 at 16:24
feedback

Notepad++ is expecting the lines between the 2 script tags to be Javascript, not html. I've actually never seen type="text/html" in a script before. Is this correct?

link|improve this answer
I'm actually using Knockout.js in the page I pulled this example from, so I might have a slightly different setup. It seems to work fine programming-wise. This highlighting/collapsing problem happens no matter what I have as the type, though. – BDawg May 17 '11 at 21:16
Notepadd++ assumes there will be Javascript between <script> tags. If you look closely, it's trying to format the html code as Javascript. This is why it's having trouble collapsing. I don't think there's anything you can do. – whoabackoff May 17 '11 at 21:28
That's pretty much the answer I was expecting. Maybe there is someone with a workaround somewhere on here, still. Thanks for your help, Josh. – BDawg May 17 '11 at 21:32
Yeah, its because of HTML inside script tags. Tried a few tricks like wrapping inside CDATA but didn't work. – Mrchief Jul 8 '11 at 18:53
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.