Sightly can't generate exactly url
Hello,
I am using sightly to generate the content from AEM jcr:content. My code here
"<div data-sly-use.news="inTheNews.js">
<div class="read-acticle-btn">
<p>${news.hyperlink}</p>
<a href="${news.hyperlink}">${"read acticle" @ i18n, context= 'html'}
</a>
<p><a href="http://hyperlink.com">Hyperlink</a></p>
</div>
</div>"
When I preview and test the result can't display tag in the html. My result here:
"<div data-sly-use.news="inTheNews.js">
<div class="read-acticle-btn">
<p>http://hyperlink.com</p>
read acticle
<p>Hyperlink</p>
</div>
</div>"
I don't know why the sightly generate with error. The html result must be
"<div data-sly-use.news="inTheNews.js">
<div class="read-acticle-btn">
<p>http://hyperlink.com</p>
<a href="http://hyperlink.com">read acticle</a>
<p><a href="http://hyperlink.com">Hyperlink</a></p>
</div>
</div>"
How to fix this bug? Why sightly can't generate tag with href="http:hyperlink.com" and some other case. Thank & Best regards,/lyf-service/api/