Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/OpenEndedGroup/Field2
/ html
Method
html
src/main/java/fielded/TextUtils.java:31–34 ·
view source on GitHub ↗
make a string safe for inclusion in HTML
(String s)
Source
from the content-addressed store, hash-verified
29
* make a string safe
for
inclusion in HTML
30
*/
31
static
public
String html(String s)
32
{
33
return
s.replace(
"&"
,
"&"
).replace(
"<"
,
"<"
).replace(
">"
,
">"
);
34
}
35
36
37
}
Callers
11
clean
Method · 0.95
appendRemoteOutputToLine
Function · 0.45
serializeAllOutput
Function · 0.45
helpbox.js
File · 0.45
setHelpBox
Function · 0.45
selectTab
Function · 0.45
setTabContentTo
Function · 0.45
status.js
File · 0.45
setStatus
Function · 0.45
jquery-2.1.0.min.js
File · 0.45
test
Function · 0.45
Calls
1
replace
Method · 0.80
Tested by
1
test
Function · 0.36