Html Editor with color coded strings?
-
I am trying to find an html editor that automatically color codes various aspects of the code, such as the http:// or the img tags, etc, I thought someone said that is what Notepad++ does, but I can’t figure out how to make it work…
-
Notepad++ indeed does syntax highlighting. I am assuming you are not seeing it because you just started typing in a new document, so Notepad++ doesn’t know what kind of file you are creating. If you Save As a
.html
file (or open an existing.html
file), Notepad++ will do the syntax highlighting for you. It will also do so if you set Language > HTML -
@PeterJones Thank you!