I am moving one of our in-house apps that uses Coldfusion to Adobe AEM. the pages extensively use handlebars for displaying content.
my problem is that I have this code in my HTML: ${{fees-here}}
I want to display the $ sign before the price but this causes the HTL processor/parser errors.
I am using one of 2 options at the moment:
- remove the dollar sign
- put a space in between $ and the curly braces (trying not to use this as horizontal space is a premium in the app)
I am hoping that there's a 3rd option so that the prices are displayed as "$344" (without any spaces in between the $ sign and the price).
Thank you!