Category: General

You can use either of the two tricks to achieve indented text:

Use the definition list

;:Indented text

results in

;:Indented text.

Use inline CSS

%%(margin-left:2em)
Indented text
%%

Results in:

%%(margin-left:2em)
Indented text
%%

The good thing about using the latter form is that you can use it recursively:

%%(margin-left:2em)
Indented text
%%(margin-left:2em)
Indented text 2
%%(margin-left:2em)
Indented text 3
%%
%%
%%

Resulting in:

%%(margin-left:2em)
Indented text
%%(margin-left:2em)
Indented text 2
%%(margin-left:2em)
Indented text 3
%%
%%
%%

How useful was this post?

Click on a star to rate it!

Average rating 0 / 5. Vote count: 0

No votes so far! Be the first to rate this post.