I'm using polymer and I'm new to it (just started using it today) and I have some troubles displaying data coming from JSON like
, ’
, “
etc.
HTML
<news-card>
<h1>{{summary.title}}</h1>
<img src="{{summary.thumbnail}}"></img>
<span>{{summary.published}}</span>
<p>{{summary.summary}}</p>
</news-card>
Ex. JSON:
{
title: '’ This is a title',
thumbnail: 'test.jpg',
published: 'October 15'
summary: '“ '
}
Ex. Output:
’ This is a title
October 15
“