0 votes
by (690 points)
closed by
This seems like a stupid question, but it's really not. I'd like to indent a line in the game, but it doesn't show empty spaces at the start of lines, such as created when pressing tab or hitting the space bar.

Is there an indent macro I can use or something?
closed with the note: Answered

1 Answer

+1 vote
by (23.6k points)
edited by

You can get an indentation by wrapping your text in:

<div style="text-indent: 2em;">Your Text Here</div>

Or you can go to your CSS Stylesheet and add something like:

p {
    text-indent: 2em;
}

Then add indents like this:

<p>Your Text Here</p>

Alternatively you can insert whitespace the length of 2/4 normal spaces like this:

&ensp;Your Text
&emsp;Your Text

 

by (690 points)
Thank you for the help.
...