Html encoded HTML editor built into

Now I'm using Notepad ++, as is often suggested here for basic html and css editing. The only thing missing is the HTML Encode method inserted into the text. Is there a way to do this in Notepad ++ or do I need to look for another editor that would use this? If so, any suggestions, I used Komposer in the past, which was ok, is there anything better there now.

+8
notepad ++
source share
1 answer

Yes, there is a plugin for this (I am running version 6.9.2).

HTML TAG helped, here are the steps I took to get it working:

  • install plugin from Notepad ++ Plugins> Plugin Manager> Show Connection Manager Find HTML Tag

Unfortunately, there are a few more steps (at least for me!)

  1. Now I had to download the actual plugin: HTML TAG and find the HTML tag and download it
  2. unzip the tag and then put it in 'C: \ Program Files (x86) \ Notepad ++ \ plugins'

<HTML> <BODY> <TABLE><TR><TD></TD></TR></TABLE> </BODY> </HTML>

<HTML> <BODY> <TABLE><TR><TD></TD></TR></TABLE> </BODY> </HTML>

he will also do

 test&=3543 

to

 test&amp;=3543 

I updated it on 9/8/16 to fix the link, since this requires a link, if this link goes wrong, please tell me in the comments and I will delete this answer or find a new one.

+17
source share

All Articles