stevebauman/hypertext
Composer 安装命令:
composer require stevebauman/hypertext
包简介
The best HTML to text transformer
README 文档
README
A PHP HTML to pure text transformer that beautifully handles various and malformed HTML.
Hypertext is excellent at pulling text content out of any HTML based document and automatically:
- Removes CSS
- Removes scripts
- Removes headers
- Removes non-HTML based content
- Preserves spacing
- Preserves links (optional)
- Preserves new lines (optional)
It is directed at using the output in LLM related tasks, such as prompts and embeddings.
Installation
composer require stevebauman/hypertext
Usage
use Stevebauman\Hypertext\Transformer; $transformer = new Transformer(); // (Optional) Filter out specific elements by their XPath. $transformer->filter("//*[@id='some-element']"); // (Optional) Retain new line characters. $transformer->keepNewLines(); // (Optional) Retain anchor tags and their href attribute. $transformer->keepLinks(); $text = $transformer->toText($html);
Example
For larger examples, please view the tests/Fixtures directory.
Input:
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>My Blog</title> </head> <body> <h1>Welcome to My Blog</h1> <p>This is a paragraph of text on my webpage.</p> <a href="https://blog.com/posts">Click here</a> to view my posts. </body> </html>
Output (Pure Text):
echo (new Transformer)->toText($html);
Welcome to My Blog This is a paragraph of text on my webpage. Click here to view my posts.
Output (Keep New Lines):
echo (new Transformer)->keepNewLines()->toText($html);
Welcome to My Blog
This is a paragraph of text on my webpage.
Click here to view my posts.
Output (Keep Links):
echo (new Transformer)->keepLinks()->toText($html);
Welcome to My Blog This is a paragraph of text on my webpage. <a href="https://blog.com/posts">Click Here</a> to view my posts.
Output (Keep Both):
echo (new Transformer) ->keepLinks() ->keepNewLines() ->toText($html);
Welcome to My Blog
This is a paragraph of text on my webpage.
<a href="https://blog.com/posts">Click Here</a> to view my posts.
stevebauman/hypertext 适用场景与选型建议
stevebauman/hypertext 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 556.35k 次下载、GitHub Stars 达 171, 最近一次更新时间为 2023 年 10 月 22 日, 在 PHP 生态内属于活跃度较高的组件。
我们在过去多个企业项目中使用过 stevebauman/hypertext 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 stevebauman/hypertext 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
统计信息
- 总下载量: 556.35k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 171
- 点击次数: 20
- 依赖项目数: 1
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2023-10-22