Skip to content

usage notes

rdipardo edited this page Jun 4, 2024 · 1 revision

File types other than HTML

The Decode entities command does not decode named entities like © in XML files

As explained in this thread:

XML does not support named entities […], so the plugin doesn’t use them. To get named entities, use Notepad++’s Language menu to choose HTML.

In fact, the plugin will decode any of the five predefined entities recognized by the XML 1.0 specification, i.e.,

Named entity Decoded as…
" "
' '
& &
&lt; <
&gt; >

Every other special character in your XML document must be encoded as a numeric entity for decoding to work, e.g.

Numeric entity (base-16 encoding) . . . (base-10) Decoded as…
&#x2026; &#8230;

Note

Unicode escape characters will always be decoded, regardless of the buffer’s file type.

Autocomplete replaces both tags in Web markup documents only

Since 1.4.2, synchronized tag autocompletion is implemented for the following file types:

  • HTML
  • XML
  • PHP
  • ASP
  • JSP

Select Plugins > HTML Tag > About and check that your plugin’s version is at least 1.4.2.
Make sure the active buffer is one of the file types listed above, and that tags have been selected by the Select matching tags command.

Example

htmltag-autocomplete-matching-tags