strip_anchors
v.1.0.0
strip_anchors
Twig (v.2.5.0) 过滤器从输入中删除所有锚链接(即指向它们所在页面的不同部分的链接)。
< h2 > < a href =" #features " > Features of this Twig Extension a > h2 >
< h2 > Features of this Twig Extension h2 >
请注意:此存储库仅显示 Symfony 4 骨架项目中需要添加或修改以启用“strip_anchors”Twig 扩展的目录和文件。
在 RSS 源模板中使用此 Twig 过滤器可帮助将 HTML 输入转换为有效的 RSS 2.0,如以下示例所示:
{{ item.content|strip_anchors }}
<-- excerpt from rss.xml.twig: -->
这个存储库展示了如何在使用 symfony/sculpture 创建的 Symfony 4 项目结构中实现这个自定义 Twig 扩展(即strip_anchors
Twig 过滤器)。
(上述内容的版权归其各自所有者所有。)
$ composer create-project symfony/skeleton my-project
$ git clone https://github.com/hfagerlund/strip_anchors.git
$ php bin/console server:run
从项目根目录,运行以下命令之一:
$ ./vendor/phpunit/phpunit/phpunit ./tests/
或者(推荐):
$ ./bin/phpunit
版权所有 (c) 2018 海尼·法格伦德。根据 MIT 许可证获得许可。