MCPcopy Create free account
hub / github.com/TeleBoxOrg/TeleBox_Plugins / htmlEscape

Function htmlEscape

outdated/gpt/gpt.ts:142–149  ·  view source on GitHub ↗
(text: string)

Source from the content-addressed store, hash-verified

140
141// HTML转义函数
142function htmlEscape(text: string): string {
143 return text
144 .replace(/&/g, "&")
145 .replace(/</g, "&lt;")
146 .replace(/>/g, "&gt;")
147 .replace(/"/g, "&quot;")
148 .replace(/'/g, "&#x27;");
149}
150
151// 简单的Markdown到HTML转换函数
152function markdownToHtml(text: string): string {

Callers 1

markdownToHtmlFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected