Text snippets with formatting

i need to insert some info (benefits of my store and shipping details) in each listing. this is two blocks of numbered text of 4-5 lines which must be easily mass-edited in future.

text snippets killing formatting (line numbers and carriage returns).

any ideas how i can do this?

You should give the Text Snippets a try and use HTML to format your text.

Are you trying insert a numbered list? If so, you could use this:

<ol style="margin: 0 0 0 20px;">
  <li>line one</li>
  <li>line two</li>
  <li>line three</li>
  <li>line four</li>
  <li>line five</li>
</ol>

Regards, Kristian

oh thanks. i thought it will ignore any code