forked from oreillymedia/svg-essentials-examples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
converter.html
33 lines (28 loc) · 1.01 KB
/
converter.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<!--J David Eisenberg, 7 July 2013 -->
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<title>Convert XML to entities</title>
<script tpe="text/javascript">
// <![CDATA[
function convert()
{
var original = document.getElementById("original").value;
var result = original.replace(/&/g, "&");
result = result.replace(/</g, "<");
result = result.replace(/>/g, ">");
document.getElementById("converted").value = result;
}
// ]]>
</script>
</head>
<body>
<p>Enter XML here</p>
<textarea rows="10" cols="70" id="original"></textarea>
<input type="button" onclick="convert();" value="Convert"/>
<p>Here is your XML in entity form</p>
<textarea rows="10" cols="70" id="converted"></textarea>
</body>
</html>