heimrichhannot/contao-replace-bundle
最新稳定版本:1.3.0
Composer 安装命令:
composer require heimrichhannot/contao-replace-bundle
包简介
Helper contao bundle to perform a regular expression search and replace on front end page.
README 文档
README
Helper contao bundle to perform a regular expression search and replace on front end page.
Configuration
Currently it is only possible to search and replace globally. Open your contao settings and configure custom search and replace patterns.
Examples
Wrap headline text in <span>
Before: <h1>Test A</h1>
After: <h1><span>Test A<span></h1>
- Pattern:
(<h\d[^>]*>)(.*)(<\/h[^>]*>) - Replacement:
$1<span>$2</span>$3
Bootstrap 4 responsive tables
Before: <table><thead><tr><th>Value</th></tr></thead><tbody><tr><td>1</td></tr></tbody></table></body></html>
After: <div class="table-responsive"><table class="table table-bordered table-hover"><thead><tr><th>Value</th></tr></thead><tbody><tr><td>1</td></tr></tbody></table></div>
- Pattern:
(<table>)(.*)(<\/table>) - Replacement:
<div class="table-responsive"><table class="table table-bordered table-hover">$2</table></div>
Replace files path inside links
Before: <a href="tl_files/subfolder/files/file.pdf">Test link</a>
After: <a href="files/backup/file.pdf">Test link</a>
- Pattern:
(tl_files\/subfolder\/files\/) - Replacement:
<div class="table-responsive"><table class="table table-bordered table-hover">$2</table></div> - Replace tags: true (checked)
统计信息
- 总下载量: 1.33k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 2
- 点击次数: 3
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: LGPL-3.0-or-later
- 更新时间: 2018-04-10
