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 許可證獲得許可。