Notepad ++ or netbeans plugin for marking text in html

I need a plugin that can appear in other color words in HTML (and PHP) code. for instance

<span class='domain'>this is domain</span> 

and i need this result

<span class='domain'> this is a domain </span>

Is it possible?


But what if I have text and htm in echo?

+4
source share
2 answers

You can go to Notepad ++, and there Settings β†’ Style Configurations and the left side of the HTML, and then change the colors the way you like!

+2
source

Netbeans also has a custom html editor that can do the job.

Go

Tools> Options> Font & Color

On the syntax tab, select HTML as the language and make the appropriate changes.

enter image description here

+1
source

Source: https://habr.com/ru/post/1486768/


All Articles