Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to Display Multiple Spaces in Redmine

Tags:

redmine

I want to keep the hierarchy of an article.

In Redmine, all multiple spaces are replaced by 1 space

How to preserve those spaces?

like image 959
dongx Avatar asked May 24 '13 17:05

dongx


2 Answers

I think this way is efficient and controllable, just like the html code,use this instead a whitespace:

 
like image 56
Fengya Li Avatar answered Sep 23 '22 05:09

Fengya Li


This does not keep spaces:

h3. Directories where it exits

Root
    Child1
    Child2

Add a single space at the Root level will keep the hierarchy

This keeps spaces:

h3. Directories where it exits

 Root
    Child1
    Child2
like image 26
Zetian Avatar answered Sep 19 '22 05:09

Zetian