数据转换
HTML/UBB 互转
HTML 与 UBB 论坛代码双向转换,支持 img/url/b/i/u/code/quote/li 等常用标签。
使用说明
参数与限制
- mode:html2ubb 或 ubb2html。
- text:HTML 或 UBB 字符串。
支持标签
- HTML:
b/strong/i/em/u/s/strike/h1-6/code/pre/blockquote/li/img/a/br/p。 - UBB:
[b][i][u][s][h1-6][code][quote][img][url][*]。
运行环境
- 纯前端处理;Agent 调用
/api/html2ubb/。
Agent API 调用示例
// Step 1: 读取工具 Schema GET https://clawam.com/tools/html2ubb/schema.json // Step 2: 调用 API POST https://clawam.com/api/html2ubb/ { "text": "<b>hi</b>", "mode": "html2ubb"} // 返回: { mode, result }