Solved

Creating HTML report - output problem

  • 22 March 2022
  • 2 replies
  • 5 views

Badge

Hello sir/ madam,

 

I want to output my result as a HTML format.

I want to output my source data (let say I have 3 source data) on new line.

Like this:

  1. abc
  2. cde
  3. fgh

 

May I ask how to do it?

I am not sure why mine is still on the same line. ( i have uploaded my capture screen below).

 

Thank you.

 

Zach

 

icon

Best answer by j.botterill 22 March 2022, 09:52

View original

2 replies

Userlevel 2
Badge +19

You could try adding <br> html on the end of each... to break the lines https://www.w3schools.com/tags/tag_br.asp

 

e.g.

SourceData: $(SourceDataset_GEOJSON_3) <br>

 

Badge

You could try adding <br> html on the end of each... to break the lines https://www.w3schools.com/tags/tag_br.asp

 

e.g.

SourceData: $(SourceDataset_GEOJSON_3) <br>

 

Got it! thank you so much! :)

Reply