On Wednesday, October 7, 2020 at 8:11:15 AM UTC-7, Beanman wrote:
>
>
> Is there any way i could change the default behavior of wikitext so that 
> it always behaves as if I'm using """ to get hard line breaks?  Never in my 
> life have I pressed the enter key and not wanted to get a hard line break 
> out of it, so is there any setting I can change, or maybe just make it so 
> that pages start with the triple quotes by default?
>

https://tiddlywiki.com/#Hard%20Linebreaks%20with%20CSS demonstrates how to 
use CSS to get "hard linebreaks" in your tiddler content.

In that example, it shows the syntax for making hard linebreaks 
conditionally based on tagging the tiddler.  However, you could make it 
apply to all tiddlers just as easily.

Just put the following CSS content into a tiddler (e.g., MyStylesheet), 
tagged with $:/tags/Stylesheet:
.tc-tiddler-body {
  word-break: normal; 
  word-wrap: break-word;
  white-space: pre-wrap;
} 

enjoy,
-e  

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/c7741ebe-0b79-42ff-863e-fe5707e77b3ao%40googlegroups.com.

Reply via email to