oro/html5-purifier
Composer 安装命令:
composer require oro/html5-purifier
包简介
Adding HTML5 tags support to WYSIWYG editors
README 文档
README
The purpose of this bundle is to add xemlock/htmlpurifier-html5 library support without introducing the BC break.
The library adds support for HTML5 tags to HTMLPurifier.
The bundle also adds the ability to switch between three purification modes:
strict- filter html elements and attributes by white list. Style and iframe elements are not allowed.extended- same as strict but style and iframe elements are allowed.disabled- HTML Purifier is disabled completely.
The modes are switched with html_purifier_mode config setting in package/html5-purifier/Resources/config/oro/app.yml
How to Extend the List of Supported Elements and Attributes in Html5Purifier
Sometimes it may be necessary to add additional elements or attributes to the Html5Purifier config.
To add a custom element, decorate the oro_html5_purifier.html_tag_helper service.
services: ... acme.html_tag_helper: decorates: oro_html5_purifier.html_tag_helper parent: oro_html5_purifier.html_tag_helper calls: # map element - ['setElement', ['map', 'Block', 'Flow', 'Common', true]] # map attributes - ['setAttribute', ['map', 'id', 'ID']] - ['setAttribute', ['map', 'name', 'CDATA']]
Next, add the map element and attributes into the purifier config in the app.yml file in your bundle.
oro_form: wysiwyg: html_allowed_elements: map: attributes: - id - name
Now you can use the map tag and its id and name attributes in all WYSIWYG fields.
统计信息
- 总下载量: 0
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 2
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: OSL-3.0
- 更新时间: 2021-04-19