在 notepad++ 中自动关闭 </ 上的 html 标签
autoclose html tag on </ in notepad++
我使用 notepad++ 有一段时间了,当涉及到不同的 html 标签时,我遇到了自动关闭问题。
我想知道是否可以在写入时自动关闭最近的标签
</
(就像它在 Dreamweaver 中所做的那样)而不是在您编写
时自动关闭标签
> (at the beginning tag for example <html(>)<-- it auto closes
the tag here and it includes also comment tags which makes
it look like this:
<!----></!----->)
我试过 TextFX,但未能通过该插件修复它。
您是否尝试过通过 TextFX 设置来做到这一点?如果您勾选 + Autoclose XHTML/XML <Tag>
选项,每次关闭开始标签的括号时,都会创建一个结束标签。例如,如果您键入 <div>
,当您完成键入 >
时,编辑器会自动在其旁边创建 </div>
。希望对你有帮助。
我使用 notepad++ 有一段时间了,当涉及到不同的 html 标签时,我遇到了自动关闭问题。
我想知道是否可以在写入时自动关闭最近的标签
</
(就像它在 Dreamweaver 中所做的那样)而不是在您编写
时自动关闭标签> (at the beginning tag for example <html(>)<-- it auto closes the tag here and it includes also comment tags which makes it look like this: <!----></!----->)
我试过 TextFX,但未能通过该插件修复它。
您是否尝试过通过 TextFX 设置来做到这一点?如果您勾选 + Autoclose XHTML/XML <Tag>
选项,每次关闭开始标签的括号时,都会创建一个结束标签。例如,如果您键入 <div>
,当您完成键入 >
时,编辑器会自动在其旁边创建 </div>
。希望对你有帮助。