Well, title says it all, I want syntax highlighting inside <h:outputScript> tags, for example:
  <?xml version="1.0" encoding="utf-8"?>
  <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  <ui:composition xmlns="http://www.w3.org/1999/xhtml"
      xmlns:ui="http://java.sun.com/jsf/facelets"
      xmlns:h="http://java.sun.com/jsf/html"
      xmlns:f="http://java.sun.com/jsf/core"
      xmlns:c="http://java.sun.com/jsp/jstl/core"
      xmlns:t="http://myfaces.apache.org/tomahawk">
      <h:panelGroup id="foo">
          blah
      </h:panelGroup>
      <h:outputScript>
        //please highlighting here
        var iousGoogleSearchesLaterIfearThereIsNoSuch = function(but, I, do, want, so) {
           if(youKnow(something)) {
             please(but);
           }
           for (I, do, so, want ;'';);
           return "the favor" && share;
        };
      </h:outputScript>
  </ui:composition>
Any tips/tools or ideas? Thanks
 
     
    