我可以轻松地向 Template Toolkit for Perl 添加新指令吗?
如果通过插件系统添加函数和/或虚拟方法,我想将自己的指令添加到模板工具包中。这是否可以轻松实现,而无需深入研究 Template::Grammar
?有什么我可以在 CPAN 上学习的例子吗?
I'd like to add my own directives to Template Toolkit instead if adding functions and/or virtual methods via the plugin system. Is this easily doable without delving too deep into Template::Grammar
? And are there any examples I could study on CPAN?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
Template::Manual 中描述的 MACRO 指令 是否执行您的操作想?
Does the MACRO directive which is described in Template::Manual do what you want?
就我个人而言,我发现扩展 TT 行为的最佳方法是将 subrefs 放入存储中:
Personally I've found the best way to extend TT's behaviour is to shove subrefs in the stash: