I am having a problem parsing text I am reading with a google read cell activity to an html tag. The cell I am reading contains multiline text, but when parsing this to an html tag, the expected output is different from expected. I need the output text to be exactly the same as the cell contents. In the example noted below, instead of having a multiline text output, I am getting a single line output.
Example of content in cell
Dummy text
This is an example dummy string
When parsed to html p tag
Dummy text This is an example dummy string
Is it possible to maintain the multiline formatting? If so, how can this be achieved?
The text is not wrapped. The cell just contains multiline text which I want to parse as is to the html p tag. Essentially, the desired output should be:
Dummy text
This is an example dummy string
I will need to extract multiple cell values from the same Google sheet, and the majority of them are multiline text strings
Is the solution I’ve provided above satisfactory?
If so then I’d appreciate it if you could mark the answer as Solution so that others facing similar issues may benefit from it, and also to close this thread.
If this is not what you were looking for then additional details would be most appreciated.