I am writing an IntelliJ plugin to do syntax highlighting for the Scala implementation of Jade. Jade is an HTML templating language which can include embedded code. for example:
-@ var teams : List[Team]
div(id="TeamList")
ul
=teams foreach {view(_, "list")}
Everything after the "-@" and the last "=" is embedded Scala code. My plugin handles the Jade syntax highlighting but I do not want to repeat the Scala Highlighting. Is there a way to delegate the syntax highlighting of the Scala code to the already existing Scala Plugin?