[tw] Re: Bug: hard linebreaks plus angle brackets plus code block

2015-02-10 Thread PMario
IMO the easiest way would be to cover the e-mail address in a code block 
with backticks. eg: `m...@example.com`
-m

-- 
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: Bug: hard linebreaks plus angle brackets plus code block

2015-02-10 Thread Astrid Elocson
Very true, although it's then harder to make the address be a link.

And you wouldn't need the angle brackets – they're really only there to 
delimit the address in ordinary prose. The typographical styling of the 
code element would be a sufficient delimiter.

– æ

-- 
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: Bug: hard linebreaks plus angle brackets plus code block

2015-02-09 Thread Astrid Elocson
The hard line breaks are not actually relevant: you can get the same 
effect without them.

When a sequence of letters and digits (and hyphens and dollar signs) 
immediately follows a left angle bracket, TiddlyWiki treats this as the 
start of an opening tag.

*michaelabcde/michael* thus gets passed straight through to the HTML of 
the rendered tiddler. You could in fact style the text (*abcde*) using CSS:

*michael { color: red; font-size: 200%; }*

So basically angle brackets are part of TiddlyWiki's fundamental syntax, 
and to escape them you have to use standard HTML techniques such as *lt;* 
or *#60;*. For quoting email addresses, I suggest using a macro:

*\define email(user,domain) lt;$user$@$domain$gt;*

*email michael microsoft.com*

In a published wiki, splitting the address into two pieces like that may 
help to conceal it from harvesters.

– æ

-- 
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.