Y
Hacker News
new
|
ask
|
show
|
jobs
by
benmmurphy
4916 days ago
If you put it in a script tag you need to ensure you escape </script>. Though, it is probably safer to escape <, >, and & just to be sure.
1 comments
fforw
4916 days ago
The </script> issue is why JSON and Javascript both allow you to escape the slash character with a backslash.
So just going <\/script> is enough.
link
So just going <\/script> is enough.