Forum Discussion
URL Hyperlinking phishing training
- Feb 25, 2026
You need to format the tags as inline code so they don’t get interpreted.
Post it like this instead:
You’re seeing this because the Defender simulation editor renders the content as HTML.
When you press Enter, it only creates a plain text line break, but HTML ignores that — so everything appears as one long paragraph when rendered.
To keep line breaks visible, you need to use basic HTML tags.
Instead of:
Line 1
Line 2
Line 3Use:
Line 1<br>
Line 2<br>
Line 3<br>Or better:
<p>Line 1</p>
<p>Line 2</p>
<p>Line 3</p>The <br> tag forces a line break, and <p> creates proper paragraphs.
You need to format the tags as inline code so they don’t get interpreted.
Post it like this instead:
You’re seeing this because the Defender simulation editor renders the content as HTML.
When you press Enter, it only creates a plain text line break, but HTML ignores that — so everything appears as one long paragraph when rendered.
To keep line breaks visible, you need to use basic HTML tags.
Instead of:
Line 1
Line 2
Line 3
Use:
Line 1<br>
Line 2<br>
Line 3<br>
Or better:
<p>Line 1</p>
<p>Line 2</p>
<p>Line 3</p>
The <br> tag forces a line break, and <p> creates proper paragraphs.
Thanks. I tried that but the tags just get rendered as test. It's like the popup is plain text and not seen as html