Using Notepad ++ to validate XML on XSD

Can someone explain how to use Notepad ++ to validate an XML file on xsd. The XML Tools plug-ins drop-down list has no options that specify an XSD file. The XML plugin is installed correctly in the plugin subdirectory, and 3 DLLs are copied to the Notepad ++ EXE subdirectory. Other XML "validation" functions work, but there is no way to validate it on XSD.

+104
xml notepad ++ xsd
Mar 15 '13 at 15:29
source share
2 answers
+65
Mar 15 '13 at 15:41
source share
  1. In Notepad ++, go to Plugins > Plugin manager > Show Plugin Manager , then find the Xml Tools plugin. Check the box and click Install

    enter image description here

  2. Open the XML document you want to validate and press Ctrl + Shift + Alt + M (or use the Menu if you prefer Plugins > XML Tools > Validate Now ).
    The following dialog box opens: enter image description here

  3. Click on ... Point to the XSD file, and I'm sure you can handle it.

Hope this saves you some time.

EDIT: The plugin manager was not included in some versions of Notepad ++ because many users did not like the commercials it had previously shown. If you want to keep the older version, but still want to have a plugin manager, you can download it on github and install it by unpacking the archive and copying the contents to the plugins and updates folder.
In version 7.7.1 , the plugin manager returned under a different look ... Plugin Admin , so now you can just update Notepad ++ and get it back.

enter image description here

+98
May 11 '15 at 12:19
source share



All Articles