ajo variables
How can I pass an HTML tag as a variable in AJO?
I want to declare a variable that contains a hyperlink. For example:
{% let abc = "<p>hi this is my url <a href=\"https://www.google.com\">Google</a></p>" %}
However, when I display this variable in my Handlebars template, I'm getting an unexpected output, such as:
"Hi this is my url <p>hi this is my url <a href="https://www.google.com">Google</a></p>"
Questions:
How can I correctly handle HTML tags in a variable?
How can I properly include quotes (") in the variable declaration?