Code
Hub
Workspaces
Connect
Indexed graphs
Engine
MCP
copy
Index your code
hub
/
github.com/codeaashu/claude-code
/ escapeHtml
Function
escapeHtml
web/lib/search/highlighter.ts:63–70 ·
view source on GitHub ↗
(text: string)
Source
from the content-addressed store, hash-verified
61
}
62
63
function
escapeHtml(text: string): string {
64
return
text
65
.replace(/&/g,
"&"
)
66
.replace(/</g,
"<"
)
67
.replace(/>/g,
">"
)
68
.replace(/
"/g, "
"")
69
.replace(/'/g,
"'"
);
70
}
Callers
1
highlight
Function · 0.70
Calls
no outgoing calls
Tested by
no test coverage detected