こんにちは、次のようなjsonオブジェクトがあります..
[Object { Address="Space Hall <br/> GSBS Ground", EventStartDate="4/12/2013 12:00:00 AM", EventEndDate="4/12/2013 12:00:00 AM", more...},
Object { Address="Space Hall <br/> GSBS Ground", EventStartDate="4/13/2013 12:00:00 AM", EventEndDate="4/13/2013 12:00:00 AM", more...}]
テンプレートでjsrenderを使用してこれをレンダリングしています
<script id="jsTemplate" type="text/html">
<tr>
<td>{{=Address}}
</td>
</tr>
</script>
今問題は、「アドレス」に改行、つまり「br」タグが含まれていることです...これをhtmlタグのみと見なし、このような文字列を表示しないようにするにはどうすればよいですか。