Hi,
Is it possible to get nested syntax highlitghting working with sublime text?
I have Perl code with HTML in a string. Also there are delimiters ‘<% and %>’ that are embedded in the html that perl code will reside in.
So it’s sortof Perl inside HTML inside Perl
Below is a code snippet with:
Line 1 - Perl
Lines 2-3 - HTML
Lines 4-8 - Perl
Lines 9-10 - HTML
Line 11 - Perl
[code]my $htmlTemplateList = "
<% foreach my $s (0 .. $#scriptResourceList) { } %> "; [/code] Is it possible to get Sublime Text to highlight this properly and detect each of the languages?Thanks