> i insert more spaces and tabs to separate some phrases, this don't
> work! i see everytihng as i digited one space. How solve?
As with all browser-rendered content, the default is to reduce all
whitespace, including spaces, tabs, and newlines, to single-spaces and
then word-wrap the results.
To preserve whitespace exactly as entered, you can use TW's 'inline
CSS' syntax, like this:
@@white-space:pre;content goes here
second line
indented third line
@@
Note: the @@attribute:value;...@@ syntax cannot be nested, so any text
it surrounds cannot use the @@ syntax itself.
For greater flexibility (including nesting of CSS formats), you can
define a custom CSS class in [[StyleSheet]], like this:
.myClass { white-space:pre; }
and then use TW's "CSS class wrapper" syntax in your content, like
this:
{{myClass{content goes here
second line
indented third line
}}}
> And to change the alignment of text?
There are lots of formatting 'shortcuts' that can be achieved with CSS
class wrappers. For a convenient set of pre-defined classes, see:
http://www.TiddlyTools.com/#StyleSheetShortcuts
To use these class definitions, you can either:
A) copy/paste the desired declarations directly into your
[[StyleSheet]]
or
B) Enter:
[[StyleSheetShortcuts]]
(with the brackets) into your [[StyleSheet]] to *include* the entire
set of shortcuts without having to copy/paste the individual
declarations.
HTH,
-e