Is using the triple quotes the only way to produce a single line break?For a page of text which includes headers and bullets etc. each piece of text needs to be enclosed in the quotes.
Is there another way around it?
You are getting further from the initial issue but there is a class field on tiddlers that can be used to apply css to this tiddler.
Its quite easy to create own new tiddler button that creates custom tiddlers with text, fields and tags to a desired standard.
If you are familiar with wordprocessors you may realise there is a difference between a line break and a paragraph. Initialy it seems annoying that line breaks seem to collapse in wiki text but when you start writing wiki text with widgets and macros you become greatful that you don't end up with unwanted line breaks every where.
I can share more methods soon.
Tony
--
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 tiddlywiki+...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/tiddlywiki/1baa8778-0a76-40fa-ba10-dae34fa98fd5%40googlegroups.com.
.Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
.Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
dl dt { font-weight: normal; margin-top: 0px; }
Then, instead of
"""
one
two
three
"""
I write:
;one
;two
;three
And instead of
"""
one
two
three
four
"""
I write
;one
;two
;three
>
;four
In other words, I changed the behaviour of ";" (term).
In case I need:
;term
:definition
I write
;''term''
:definition
This is not very elegant, I know, but it works for me. Of course, Tony, your solution
(the leading period [.]) would be an improvement.
I created a simple button for this myself. It's very simple.Create a button.For the action, use this:<$action-sendmessage
$message="tm-edit-text-operation"
$param="suffix-lines"
character="<br>"
count="1"
/>
On Sun, Nov 3, 2019, 4:27 PM Jon, <five...@gmail.com> wrote:
Hi Tony,--Yes, a new tiddler button with associated css sounds good. I've seen references to this before so I'll investigate.ThanksJon
On Sunday, 3 November 2019 22:52:31 UTC, TonyM wrote:JonYou are getting further from the initial issue but there is a class field on tiddlers that can be used to apply css to this tiddler.
Its quite easy to create own new tiddler button that creates custom tiddlers with text, fields and tags to a desired standard.
If you are familiar with wordprocessors you may realise there is a difference between a line break and a paragraph. Initialy it seems annoying that line breaks seem to collapse in wiki text but when you start writing wiki text with widgets and macros you become greatful that you don't end up with unwanted line breaks every where.
I can share more methods soon.
Tony
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 tiddl...@googlegroups.com.
.myText { word-break: normal; word-wrap: break-word; white-space: pre-wrap; }
This will have the same effect as tagging it and use the data-xxxx definition.
have fun!
mario
.tc-tiddler-body {
...
-m
So, although the contents of both tags looked exactly the same when side by side, there was something about the copying & pasting that introduced the error.