- Saved searches
- Use saved searches to filter your results more quickly
- License
- Licenses found
- rdipardo/nppHTMLTag
- Name already in use
- Sign In Required
- Launching GitHub Desktop
- Launching GitHub Desktop
- Launching Xcode
- Launching Visual Studio Code
- Latest commit
- Git stats
- Files
- README.textile
- About
- HTMLTag plug-in for Notepad++
- Installation
- Usage
- Files
- HTML-теги для Notepad ++ находит и выделяет совпадающие теги в HTML-файле
- Automate IT!
- NotePad ++ HTML TAG Plugin: Easy HTML encode & decode functions
Saved searches
Use saved searches to filter your results more quickly
You signed in with another tab or window. Reload to refresh your session. You signed out in another tab or window. Reload to refresh your session. You switched accounts on another tab or window. Reload to refresh your session.
The new home of the HTML Tag plugin for Notepad++ [MIRROR]
License
MPL-2.0, GPL-2.0 licenses found
Licenses found
rdipardo/nppHTMLTag
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Sign In Required
Please sign in to use Codespaces.
Launching GitHub Desktop
If nothing happens, download GitHub Desktop and try again.
Launching GitHub Desktop
If nothing happens, download GitHub Desktop and try again.
Launching Xcode
If nothing happens, download Xcode and try again.
Launching Visual Studio Code
Your codespace will open once ready.
There was a problem preparing your codespace, please try again.
Latest commit
Git stats
Files
Failed to load latest commit information.
README.textile
HTMLTag plug-in for Notepad++
Note
v1.1.0 was the last release supporting ANSI versions of Notepad++
This plug-in provides three core functions to Notepad++:
- HTML and XML tag jumping, like the built-in brace matching (Ctrl+B / Shift+Ctrl+B), and selection
of tags and/or contents. - HTML entity encoding/decoding (example: é to é )
- JS character encoding/decoding (example: é to \u00E9 )
It originated in these requests on the Plugin Development forum on SourceForge.net:
Always check your Notepad++ version at “? > Debug Info” before installing plugins
Notepad++ 8.3 is the minimum required version for 64-bit releases of HTML Tag 1.2 and newer
You can safely use any 32-bit version of HTML Tag with any 32-bit version of Notepad++
A builtin plugin manager is available in Notepad++ versions 7.6 and newer.
Find Plugins on the main menu bar and select Plugins Admin. Check the box beside HTML Tag and click Install.
New plugin versions are added to Plugins Admin only when a new Notepad++ release is published.
To use an updated plugin before release, or downgrade to an earlier version, simply replace the plugin’s DLL with another one.
Note
This assumes you have already found a compatible version from a trusted source
Extract the DLL and accompanying files to the plugins folder under %ProgramFiles%\Notepad++ (or wherever you’re running Notepad++ from).
For 32-bit versions, make sure the plugin folder is named HTMLTag_unicode and the module is named HTMLTag_unicode.dll .
Otherwise, the folder should be named HTMLTag and the module HTMLTag.dll .
Right-click on HTMLTag.dll (64-bit), or HTMLTag_unicode.dll (32-bit), and select Properties.
If the Unblock option is shown, click the checkbox and click Apply, then OK:
Restart Notepad++ if it’s already running.
Alt+T | to select the matching tag |
Alt+Shift+T | to select both tags and the entire contents in between |
Ctrl+Alt+T | to select only the contents between tags |
Ctrl+E | to encode all selected non- ASCII characters to their HTML entities |
Ctrl+Alt+E | same as Ctrl+E, but encodes line breaks as well |
Ctrl+Shift+E | to dEcode all selected HTML entities |
Alt+J | to encode all selected non- ASCII character to their Javascript entities |
Alt+Shift+J | to dEcode all selected JS entities |
All commands are available under the Plugins menu item ‘ HTML Tag’; the shortcut keys can be adjusted
with the shortcut mapper.
- 1.1.0 – 2017-09-04 20:15
- Added: option to encode line break entities as well [689eef6cee]
- Fixed: decoding a JS escape reduced the selection by one each time [e717ed1de5]
- Added: 64-bit version
- Several tiny bugfixes
- Fixed: matching closing tag was excruciatingly slow since the ‘new’ regular expression engine.
- Fixed: crash on close of Notepad++
- Added: JS encoding
- Fixed: working workaround for change in Scintilla 2.2 with selection not being released
- Changed: when selecting contents only, don’t select whitespace at begin and end of contents
- Fixed: workaround for bug in Np++ 5.8.3 with selection not being released
- Added: busy indicator in Windows 7+ task bar button (can be disabled in Config\HTMLTag.ini)
- Added: New plugin command to select tag contents only
- Changed: Removed unnecessary units, reducing the file size of the DLL by 300KB
- Added: Unicode version for Notepad++ 5.1 and up
- Fixed: matching in XML files was case-inconsistent
- Fixed: matching end tag did not take special characters in tag name into account
- Tag detection is now case-sensitive in XML files
- Added entity encoding/decoding
- Uploaded the source to the Npp-plugins projects on SF.net
- Initial publication
- Add a command to close the open tag at the current location
Use the builtin Notepad++ feature - Add command to encode entities in the contents only (only apply encoding when not inside tags;
leave valid tags and entities alone) - Add command to select tags only (and leave the contents out of the selection)
- Make it play nice® with PHP & ASP tags (either highlight those separately or ignore them)
- Add option to encode entities ‘as-you-type’ Added in 1.4.0
- Add option to close tags ‘as-you-type’ (type ‘’> Not needed if tag auto-closing is enabled in Notepad++
- [Request#2147949] drop down a list of tags after ‘
- [Request#2147949] drop down a list of attributes on space after a tag
About
The new home of the HTML Tag plugin for Notepad++ [MIRROR]
HTMLTag plug-in for Notepad++
This plug-in provides three core functions to Notepad++:
- HTML and XML tag jumping, like the built-in brace matching (Ctrl+B / Shift+Ctrl+B), and selection of tags and/or contents.
- HTML entity encoding/decoding (example: é to é)
- JS character encoding/decoding (example: é to \u00E9)
It originated in these requests on the Plugin Development forum on SourceForge.net:
Installation
As usual:
Extract the DLL and accompanying files to the plugins folder under %ProgramFiles%\Notepad++ (or wherever you’re running Notepad++ from) or %AppData%\Notepad++ , and (re)start Np++.Usage
- Ctrl+T to select the matching tag;
- Shift+Ctrl+T to select both tags and the entire contents in between.
- Ctrl+E to encode all selected non-ASCII characters to their HTML entities;
- Shift+Ctrl+E to dEcode all selected HTML entities.
- Ctrl+J to encode all selected non-ASCII character to their Javascript entities;
- Shift+Ctrl+J to dEcode all selected JS entities.
All commands are available under the Plugins menu item ‘HTML Tag’; the shortcut keys can be adjusted with the shortcut mapper.
Files
- HTMLTag.dll The 64-bits unicode version of the plug-in, for Notepad++ 64-bits version 7.0 and up.
- HTMLTag_unicode.dll The 32-bits unicode version of the plug-in, for Notepad++ 32-bits version 5.1 and up.
- HTMLTag_ansi.dll The ansi version of the plug-in, for Notepad++ versions up to and including version 5.0.3. Note that this version will not be supported after v0.4.0.
- HTMLTag-entities.ini This file contains the list(s) of entities that will be processed. For now, only the list headed with [HTML 4] will be used. This can be adjusted if you want to use other entities.
- HTMLTag-readme.txt The file you’re reading now.
HTML-теги для Notepad ++ находит и выделяет совпадающие теги в HTML-файле
Notepad ++ — это продвинутый текстовый редактор, который поддерживает подсветку синтаксиса для огромного списка языков программирования. Как и любой другой редактор исходного кода, Notepad ++ отмечает синтаксические ошибки, чтобы пользователи могли легко идентифицировать ошибки кода. Если вы пишете и редактируете HTML-документы в Notepad ++ и хотите использовать специальные функции поиска HTML-тегов, HTML-теги может помочь. Поскольку HTML-код включает теги, которые часто трудно найти в больших HTML-документах, этот небольшой плагин для NotePad ++ наверняка поможет вам найти все совпадающие теги без необходимости указывать ключевые слова для поиска. Помимо поиска совпадающих тегов, он также может выделять содержимое тега, чтобы вы могли легко узнать начало и конец определенных тегов.
Возьмем, к примеру, огромный неупорядоченный список: обнаружение содержимого, заключенного в
, становится утомительным процессом, когда вы имеете дело с несколькими неупорядоченными списками в файле HTML. HTML-теги помогут вам найти содержимое тегов в таких ситуациях. Вы можете установить плагин HTML Tag из собственного диспетчера плагинов Notepad ++ или переместить DLL-файл плагина HTML Tag в папку Notepad ++ Plugins.
Программы для Windows, мобильные приложения, игры — ВСЁ БЕСПЛАТНО, в нашем закрытом телеграмм канале — Подписывайтесь:)
После установки вы можете получить доступ к тегу HTML из меню плагинов. В Найти соответствующий тег опция выделяет совпадающие теги.
Аналогично, когда вы выбираете тег и содержимое вариант, он выделит все основные строки кода отдельного тега.
Вместо выбора параметров из подменю HTML-тегов вы можете использовать Ctrl + T и Ctrl + Shift + T, чтобы выделить совпадающие теги и выделить теги вместе с их содержимым, соответственно.
Automate IT!
NotePad ++ HTML TAG Plugin: Easy HTML encode & decode functions
Sometimes you get some troubles with combinations of symbols like " ><. You’d like to get info with more usual symbols “”, “bracket”.
So, it’s time to start using Notepad++ HTML Tag Plugin for HTML Encode and decode operations.
2. Check “HTML tag” plugin and press “Install” button
3. On restart prompt satisfy program’s wish.
4. In new window select problematic text and go to “Decode HTML entries”.
Some troubleshooting:
Resolution: try to update plugin manager or notepad ++.
2. Error clicking Decode HTML entries
Resolution: there is no .ini file (after plugin manager installation).
2. Go to HTML Tag part and download archive with plugin
3. Extract HTMLTag-entities.ini to “C:\Program Files\Notepad++\plugins\” directory