HtmlPurifier:仅使用 Linkify 显示主机名
当然,您可能听说过 HtmlPurifier。我正在使用 linkify 功能 - 自动将 url 转换为 a
标签。因此,现在我只想显示主机名,但在 href
属性中保留完整的 url。
示例:
http://www.website.com/article/123-some-cool-article.html
应转换为
这可能吗?
Of course you've might heard about HtmlPurifier. I'm using linkify functionality - automatically convert urls to a
tags. So, now I want to display only hostnames but leave full url in href
attribute.
Example:
http://www.website.com/article/123-some-cool-article.html
should be converted to
<a href="http://www.website.com/article/123-some-cool-article.html">http://www.website.com</a>
Is that possible?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不是直接的,尽管这只是 Linkify.php 的一个简单补丁。
Not directly, although this would be a trivial patch to Linkify.php.