indents in sugarcube code example
Example: indents in sugarcube
//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:
 Your Text
 Your Text