HTML in a container

I am creating a series of Web pages, each in a separate container. When I add my HTML I use the paragraph tag to create new lines and it displays fine. But when I re-open the container to edit or update the contents, it has put the entire page of html and all the tags and content in a single line.

Not a big deal with 3 lines but kind of hard to work with when there is a full page of content all in one line! Any idea how to keep each line separate to make it easier to edit?

Put another way, here is how it looks, one ginormous line:

And here what it should look like:

Perhaps <br> tags would work better than <p> tags.

That didn’t go through: I was suggesting br tags instead of p tags.

Sorry

Good idea, but that didn’t work. Same issue.

What control are you using to paste the text into?

I’m putting it in the content field of the container control.

Just tried adding the standard headers for an HTML file (e.g. and ) and it totally breaks the display of the content. Just a few characters of nonsense.

Should I be doing this a different way? I thought that containers could display HTML?

Mark

I’m trying to reproduce this. Here’s what I did:

  1. New project
  2. Add a Container
  3. Paste the following into the content field:
<ol>
<li>one
<li>two
<li>three
<li>four
</ol>
  1. Click on another control.
  2. Click on my Container again and look at content. It shows 6 separate lines, as expected.

What do I need to do to see your issue?

I think the problem was use of an illegal character repeatedly in my HTML. It had a lot of quote marks that are the slanted variety rather than perfectly vertical. When I fixed them, it seems to have fixed the problem.

Best,

Mark