让 Eclipse 使用 jQuery 模板

发布于 2024-11-16 15:07:25 字数 250 浏览 1 评论 0原文

这个项目中有很多以下内容

<脚本 id="placementsListTemplate" type="text/x-query/tmpl">

问题是,Eclipse 不会将其视为 html。正如所预料的那样。

如果不是这样的话那就太好了。有没有办法,不管是否有黑客手段,让它突出显示什么是有效的 HTML?

谢谢! :D

Have alot of the following in this project

<script id="placementsListTemplate" type="text/x-query/tmpl">

Trouble is, Eclipse doesn't see this as html. As it to be expected.

It would sure be nice if this wasn't the case. Is there a way, hacky or no, to make it highlight what is valid HTML as such?

Thanks! :D

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

扎心 2024-11-23 15:07:25

这有点牵强:但是如果您将模板放入单独的文件 (.html) 扩展名中,然后使用某种包含机制(PHP、Django 模板,无论您使用什么)来获取实际模板到您组成的 HTML 输出中。

<script id="placementsListTemplate" type="text/x-query/tmpl">
{{ include "my.jquery.template.html" }}
</script>

It is little far fetched: but if you put templates to a separate file (.html) extension and then use some sort of include mechanism (PHP, Django templates, whatever you are hacking) to grab the actual template to your composed HTML output.

<script id="placementsListTemplate" type="text/x-query/tmpl">
{{ include "my.jquery.template.html" }}
</script>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文