Skip to content

Instantly share code, notes, and snippets.

@amdgigabyte
Created June 11, 2014 08:26
Show Gist options
  • Save amdgigabyte/2333ad6ca0c5fa609454 to your computer and use it in GitHub Desktop.
Save amdgigabyte/2333ad6ca0c5fa609454 to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html>
<head>
<meta name="description" content="KISSY XTemplate Test" />
<meta charset="utf-8">
<title>JS Bin</title>
<script src="http://g.tbcdn.cn/kissy/k/1.4.3/seed.js"></script>
</head>
<body>
<script>
KISSY.use('xtemplate', function (S, XTemplate) {
window.supportEscapeHtml = function () {
var tpl = 'my {{title}} is {{{title}}}';
var data = {
title: '<a>'
};
var render = new XTemplate(tpl).render(data);
alert(render);
};
});
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment