Skip to main content
Solved

Creating HTML report - output problem

  • March 22, 2022
  • 2 replies
  • 43 views

Forum|alt.badge.img

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

 

Best answer by j.botterill

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>

 

This post is closed to further activity.
It may be an old question, an answered question, an implemented idea, or a notification-only post.
Please check post dates before relying on any information in a question or answer.
For follow-up or related questions, please post a new question or idea.
If there is a genuine update to be made, please contact us and request that the post is reopened.

2 replies

j.botterill
Influencer
Forum|alt.badge.img+53
  • Influencer
  • 386 replies
  • Best Answer
  • March 22, 2022

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>

 


Forum|alt.badge.img

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! :)