Displaying a list in a panel

Question:
I am trying to add a list to my custom panel in the wix blocks editor, just like this:

  • Item 1
  • Item 2
  • Item 3
  • etc…

but it simply doesn’t seem possible with a rich text box. Trying to use “\n” just gets ignored and doesn’t show up. How do I add a line break to a panel rich text box or just show a list in a custom panel? Since this is a panel rich text box (https://dev.wix.com/docs/velo/api-reference/$w/panel-rich-text/introduction) not a text box, I don’t have the option to directly set the html

Product:
Wix blocks

What are you trying to achieve:
Ultimately I am trying to display a list but I can’t even seem to get a line break to show up in the panel text.

What have you already tried:
Using standard escape notation “\n”, it does get escaped but it doesn’t create a line break. So “Test \n test” just shows up as “Test test” with no line break.

Additional information:

Did some testing and doesn’t seem to be possible.

Curious to learn more about the use case - and would also recommend submitting it as a feature request here - Product Roadmap

@noahlovell Thanks for getting back to me. That’s unfortunate but I’ll keep looking for other solutions. Just FYI my particular use case is this:
My app allows users to add 3rd party URLs that supply data to the application. Users may only want to add 1 URL, or they may want to add 20. Using the available blocks how can I displace a dynamic number of URLs to show the users which ones they have added. So ideally the panel would look like this:

Input your URL
text input for URL
add URL button

URLs added:
URL 1
URL 2

I also looked into dynamically adding more text input fields, but that doesn’t seem to be possible either.