在Notepad ++中显示不匹配的html标签(Show unmatched html tags in Notepad++)
有没有办法在Notepad ++中突出显示不匹配的HTML标签?
例如,如果我有以下HTML ...
Vital Stats我希望
标记以某种方式突出显示它没有对应的标记。我还希望看到突出显示的任何结束标记都没有相应的开始标记。
编辑
我已经知道Notepad ++的单击标签的功能,以查看它的相应标签。 我期望突出显示ANTI文档中不匹配的ANY标签。 即使有某种我可以运行的实用程序/插件会列出我的行号和任何不匹配标签的名称也会有所帮助。
Is there a way to highlight unmatched HTML tags in Notepad++?
For instance, if I had the following HTML...
Vital StatsI would like the
tag to be highlighted in some way to indicate that it doesn't have a corresponding tag.I would also like to see any closing tags highlighted that don't have a corresponding opening tag.
EDIT
I already know about Notepad++'s feature of clicking a tag to see it's corresponding tag. I'm looking to highlight ANY tags that aren't matched in the ENTIRE document. Even if there's some sort of utility/plugin that I could run that would list for me the line number and name of any unmatched tags would be helpful.
原文:https://stackoverflow.com/questions/8744063
更新时间:2019-06-11 01:15
最满意答案
I've put in a request for someone to develop a plugin to do this in Notepad++ at https://sourceforge.net/projects/notepad-plus/forums/forum/331753/topic/4936812
Until that happens, it appears that this cannot be done in Notepad++.
相关问答
notepad
我已经向https://sourceforge.net/projects/notepad-plus/forums/forum/331753/topic/4936812请求某人开发插件来在Notepad ++中执行此操作 在这种情况发生之前,这似乎无法在Notepad ++中完成。 I've put in a request for someone to develop a plugin to do this in Notepad++ at https://sourceforge.net/proje
...
我今天不得不使用一些HTML,所以以为我会解决这个问题。 添加了一个ftplugin到vim.org应该解决你的问题。 你可以在vim.org上找到它 。 你可以在github上找到它 。 希望对你有效。 让我知道如果你有任何问题。 I had to work with some HTML today so thought I would tackle this. Added a ftplugin to vim.org that should solve your problem. You can
...
这个解决方案有点复杂,可以完全用notepad ++来完成 确保安装了HTML标记插件。 这可以通过进入插件>插件管理器>显示插件管理器,选择名为HTML标签的插件并安装它(如果你还没有)来完成。 或者从这里下载手动安装 将文本光标放在要删除的标记的开始或结束标记上,然后按CTRL + SHIFT + T. 这将选择整个元素及其所有子元素 按CTRL + H以显示查找和替换窗口。 - >选择正则表达式模式, - >确保选中“选择中”, - >在'查找内容'文本框中使用表达式(?s)\A]*
...
我创建了一个test.html文件: Some Text
我使用了Note
...
我认为Notepad ++正在使用HtmlTidy库,你也可以。 主页在这里 。 或者也许您可以在线使用HrmlTidy等服务 编辑:你似乎想要使用notepad ++(在HtmlTidy之上)。 NP ++有一组有限的命令选项,因此加载文件不是问题。 但我找不到任何接口的参考来完成你需要的其余部分:整理HTML并保存结果。 I think Notepad++ is using the HtmlTidy library, and so can you. The main page is here.
...
您是否尝试过TextFX设置? 如果勾选选项+ Autoclose XHTML/XML ,每次关闭开始标记的括号时,它都会创建一个结束标记。 例如,如果键入
...