
Hi everyone!
I have developed a description field (textinput) in an app that, later on, will be converted to html and pdf in order to be sent to an email. Since it is a text input field I suppose it is stored in plain text format, so if I introduce something like:
Hello, these are the characteristics:
- Characteristic 1
- Characteristic 2
- Characteristic 3
When it is formatted to html, it is shown as:
Hello, these are the characteristics: - Characteristic 1 - Characteristic 2 - Characteristic 3
That is, no break lines.
Is there any way to keep the format? To keep these breaks?
Thank you in advance
Hi @Anonymous ,
To convert breaks to HTML
Substitute(
YourText,
Char(10),
"<br>"
)
Please click Accept as solution if my post helped you solve your issue. This will help others find it more readily. It also closes the item. If the content was useful in other ways, please consider giving it Thumbs Up.