ikiwiki/doc/forum/formating:_how_to_align_tex...

16 lines
473 B
Plaintext
Raw Normal View History

2010-06-08 02:09:20 +02:00
as in title, how to align text to the right?
2010-06-08 21:00:58 +02:00
> Add to your local.css a class that aligns text to the right:
.alignright { text-align: right; }
> And then you just just use `<span class="alignright">` around
> other html.
>
> You can refine that, and allow right-aligning markdowned text
> by using the [[ikiwiki/directive/template]]
> directive, with a template that contains the html. The
> [[templates/note]] template does something similar. --[[Joey]]
2010-06-09 01:23:32 +02:00
>> Thanks!