Solution for not using <br> in markdown to create extra new line

Maybe this problem is very easy to solve but I have no idea right now.

My client put his contact info in his contact page:

+12(3)456 789 012
8am - 6pm

Our Office
Our Street
Our City
Our Postcode

What he wants is an extra new line between the line of “8am - 6pm” and “Our Office”. But this is the result HTML:

<p>+12(3)456 789 012
8am - 6pm</p>
<p>Our Office 
Our Street
Our City
Our Postcode</p>

If he uses this:

+12(3)456 789 012

8am - 6pm

(there are 2 new lines here but somehow the forum strips them to 1 new line)

Our Office

Our Street

Our City

Our Postcode

This is the result:

<p>+12(3)456 789 012</p>
<p>8am - 6pm</p>
<p>Our Office</p>
<p>Our Street</p>
<p>Our City</p>
<p>Our Postcode</p>

So right now, to achieve what he wants, I must use this:

+12(3)456 789 012<br>8am - 6pm<br><br>Our Office<br>Our Street<br>Our City<br>Our Postcode

This is not what the client expects, he doesn’t know what <br> is, and this is really not user-friendly. He expects a new line in the editor is a new line in the result.

Do you have any suggestions to solve this problem? Thanks!

Another easier solution is using only 1

+12(3)456 789 012

8am - 6pm

<br>

Our Office

Our Street

Our City

Our Postcode

When you do want to insert a
break tag using Markdown, you end a line with two or more spaces, then type return.

for details please refer to