Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How do I put a blank line in redmine wiki?

Tags:

wiki

redmine

I am just wondering how I can put some blank line in redmine. What I tried is putting the following text:

some sample txt



with a few empty lines

What I got in redmine is

some sample txt
with a few empty lines

So, how can I let redmine to display these empty lines? I tried using whitespace, but they didn't work.

like image 954
Joe Avatar asked Apr 14 '14 19:04

Joe


2 Answers

This is a pretty ugly solution, but it gets the job done (on demo.redmine.org which currently runs with redmine version 2.5.0.devel.12954):

some sample txt
 
 
 
with a few empty lines

is displayed as

some sample txt



with a few empty lines
like image 103
tessi Avatar answered Sep 18 '22 14:09

tessi


You can also use:

<pre>
blah blah blah


A few lines down
</pre>

Which will look like:

blah blah blah


A few lines down
like image 22
Andre S Avatar answered Sep 18 '22 14:09

Andre S