I'm using FreeMarker templates (.ftl) to generate configuration files. I have a line like this:
error-no-telegram-id = \n\n❌ Error: Could not retrieve your Telegram ID.
However, the \n\n is interpreted as newline characters, and I want to simply insert two blank lines at the beginning of the output file without processing them as escape sequences.
How can I modify my FreeMarker template so that it outputs two blank lines at the beginning of the file without interpreting them as escape sequences?
What I've tried:
- Using the sequence \n\n directly.
- Escaping the backslashes (e.g., \n\n), but that didn't produce the desired result.