[tw] Re: [TW5] Newbie: Line-break question

2014-05-28 Thread Kolya
It's a factual standard established by how the majority of online editors 
work.
Another standard is that some people will rather play dumb instead of 
openly disagreeing.
That should sound familiar to you. 


On Tuesday, 27 May 2014 00:56:28 UTC+2, Stephan Hradek wrote:



 Am Montag, 26. Mai 2014 16:10:56 UTC+2 schrieb Kolya:

 There's a standard how webeditors handle linebreaks.


 Is there? Can you tell me where? I'm really interested.



-- 
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+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: [TW5] Newbie: Line-break question

2014-05-26 Thread Kolya
Have to agree. 

There's a standard how webeditors handle linebreaks. Heck, this editor I'm 
writing this reply in uses the standard. 
But TiddlyWiki needs to invent its own? Is there any good reason for this?

Kolya


On Monday, 5 May 2014 11:37:49 UTC+2, Danielo Rodríguez wrote:

 There is nothing wrong. 
 It is just ugly.

 It is not just add the tag. HTML tags are not supported currently.

 El domingo, 4 de mayo de 2014 11:53:23 UTC-7, Ton Gerner escribió:

 Hi Danielo,

 What's wrong with br?
 Add it to your keyboard shortcuts plugin.

 Cheers,

 Ton

 On Sunday, May 4, 2014 8:08:56 PM UTC+2, Danielo Rodríguez wrote:

 This could be little pain in the ass. Specially for technical documents. 
 Sometimes you want a line break but not a new paragraph. 



-- 
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+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: Minor error with RandomLinkMacro after TW upgrade

2011-12-06 Thread Kolya
Awesome, thank you. Works fine now. :)

On Dec 5, 8:26 pm, Tobias Beer beertob...@googlemail.com wrote:
 Hi Kolya,

 I have updated the conflicting code in 
 RandomLinkMacro:http://tobibeer.tiddlyspace.com/#RandomLinkMacro
 (http://bit.ly/sWYsEb)

 It seems that the chain invoked by story.closeTiddler now interrupts
 when the title is undefined, which previously was not the case. I hope
 no other plugins that make use of story.closeTiddler, not verifying
 whether the title is not undefined are affected as well.

 Sorry for my ignorance, if any core dev can remember what has changed
 and for what reason, please share.

 tb

-- 
You received this message because you are subscribed to the Google Groups 
TiddlyWiki group.
To post to this group, send email to tiddlywiki@googlegroups.com.
To unsubscribe from this group, send email to 
tiddlywiki+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/tiddlywiki?hl=en.



[tw] Minor error with RandomLinkMacro after TW upgrade

2011-12-04 Thread Kolya
I just upgraded from TW v2.60 to v2.65 and it was mostly smooth
sailing. Thanks for that folks!
However I have a small problem with the RandomLinkMacro now. Namely it
won't work on the first click. On the second click and later it works
fine.

Firebug gives me this error on first click:
title is null:
title = title.replace(/_/g, __).replace(/ /g, _);

I have checked Tobi Beer's site (http://tobibeer.tiddlyspace.com/
#RandomLinkMacro) but there's no update for this macro yet. Maybe he
reads this. :)

The code line Firebug mentions is part of the Story function by the
way, not of the plugin itself:
//--
//-- Story functions
//--
function Story(containerId,idPrefix)
{
this.container = containerId;
this.idPrefix = idPrefix;
this.highlightRegExp = null;
this.tiddlerId = function(title) {
title = title.replace(/_/g, __).replace(/ /g, _);
var id = this.idPrefix + title;
return id==this.container ? this.idPrefix + _ + title : id;
};
this.containerId = function() {
return this.container;
};
}

-- 
You received this message because you are subscribed to the Google Groups 
TiddlyWiki group.
To post to this group, send email to tiddlywiki@googlegroups.com.
To unsubscribe from this group, send email to 
tiddlywiki+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/tiddlywiki?hl=en.