{{{
text here
}}}
Fos some reason, the lines aren't wrapping. I have whole paragraphs
that extend itno one long sentence.
Any ideas how to change this?
Thanks.
Tim
When {{{...}}} is used 'inline' with other content, it is processed as
"character mode" formatting, and word wrapping is applied to your
content. BUT... when {{{ and }}} are placed on separate lines *by
themselves* (note: without any leading/trailing 'whitespace'), your
content is processed as "line mode" formatting, without word wrapping
(and usually with with additional styles as well)
Try these examples in a tiddler to see the difference:
--------------------------------
monospacedByChar:
before {{{this is a long sentence that can be used to check the word
wrap display when a large amoung of text is being monospaced, possibly
onto several lines}}} after
--------------------------------
monospacedByLine:
before
{{{
this is a long sentence that can be used to check the word wrap display
when a large amoung of text is being monospaced, possibly onto several
lines
}}}
after
--------------------------------
HTH,
-e
Eric Shulman
TiddlyTools / ELS Design Studios
monospacedByChar turned the entire page into one big block of text.
monospacedByLine keept the lines separate, however each one appears as
one long line.
Other than actually putting a hard line break in the text, is there
another way to accomplish this?
If you just want a monospaced typeface, but normal formatting
otherwise, you could use the @@...@@ syntax to specify a different CSS
"font-family" property value:
------------------------
@@font-family:courier;put your wiki-ready content here
including empty lines
and formatting like
*bullets
__underlines__
<<<
block quotes
<<<
all in courier font!
@@
Tim
THAT was the answer i needed. Thanks for the help.
Tim