Hello,
Whas is the syntax to unescape html in slightly.
Please advise.
Thanks,
Rachana
Solved! Go to Solution.
Views
Replies
Total Likes
${ yourValue @ context='unsafe'} will unescape.
Avoid using this to not introduce XSS issues.
Views
Replies
Total Likes
${ yourValue @ context='unsafe'} will unescape.
Avoid using this to not introduce XSS issues.
Views
Replies
Total Likes
Hi There,
Thank you for reaching out to Adobe Community.
Please go through the below link to see if it helps:
http://docs.adobe.com/content/docs/en/aem/6-0/develop/sightly.html
This is the entire documentation for sightly.
thanks!
Views
Replies
Total Likes
What Feike said was correct however by using context='unsafe' you are disabling escaping and XSS protection completely. By using context='html' it filters the HTML to meet the AntiSamy policy rules, removing what doesn't match the rules. By doing this you still have some XSS protection instead of disabling it completely.
Views
Replies
Total Likes
Views
Likes
Replies
Views
Likes
Replies