Html display formatted text

format, html, text

Solution

Wrap your text inside the `<pre>` tag.

JSFiddle

<pre>
+-001 This is a Line            00:12:04
  002 ----------------------------------
- 003 Everthing looks good so far ------ 
</pre>

Problem

I’ve to display a bunch of text on an html page. The text looks something like this: ``` +-001 This is a Line 00:12:04 002 ---------------------------------- - 003 Everthing looks good so far ------ ``` The text is “pre-formatted” and contains a lot of whit spaces and dashes and every line has the same length (all chars have the same width). Is there a way to display the text in html without losing the format?

Original source