I'm writing a Python CGI script, let's say e.g.
print "Content-Type: text/html"
print
print "<html><head><title>Cool Page</title></head><body><h1>Hello World</h1>
output_awesome_information()
print "</body></html>"
I'm writing it in an editor with Python syntax highlighting. But since a lot of this script is actually written in HTML, I want both HTML and Python syntax highlighting, where HTML syntax highlighting is activated only in all strings.
Is there an editor that supports this?
