Sightly: getting special characters in element attribute
Java output:
title = title - ! # $ % & !#$%&()*+,-./:;<=?@[]^_{|}~
<title> ${properties.title @ context = 'unsafe'} </title>
Output: <title>title - ! # $ % & !#$%&()*+,-./:;<=?@[]^_{|}~</title>
Where as <meta name="title" content="${properties.title @ context = 'unsafe'}">
Output: <meta name="title" content content="title - ! # $ % & !#$%&()*+,-./:;<=?@[]^_{|}~">
I tried context = text as well
<meta name="title" content="${properties.title @ context = 'text'}">
Output: <meta name="title" content content="title - ! # $ % & !#$%&()*+,-./:;<=?@[]^_{|}~">
For example how can I get "<" inside the tags instead of <
title124 special characters ! # $ % & !#$%&()*+,-./:;<=?@[]^_{|}~
title124 special characters ! # $ % & !#$%&()*+,-./:;<=?@[]^_{|}~
