From: "Henrik Jernevad" <henrik.jerne...@gmail.com>
Date: Fri, 02 Jun 2006 19:27:11 -0700
Local: Fri, Jun 2 2006 10:27 pm
Subject: WikiWords in code
Is it possible to make TW *not* recognize a WikiWord in a {{{ code }}}
block? Adding ~ before the word obviously gets shown in the code instead. While a WikiWord in a code block doesn't get a link, it does get listed You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
| ||||||||||||||
From: "DaveG" <da...@i.am>
Date: Tue, 06 Jun 2006 07:42:09 -0700
Local: Tues, Jun 6 2006 10:42 am
Subject: Re: WikiWords in code
hi,
there is a similar problem with [[ test ]] used by Korn shells for Problem: I like being able to link from that place sometimes. How about {{{{ to }}}} means no auto linking? You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
| ||||||||||||||
From: "Eric Shulman" <elsdes...@gmail.com>
Date: Tue, 06 Jun 2006 09:15:02 -0700
Local: Tues, Jun 6 2006 12:15 pm
Subject: Re: WikiWords in code
> How about {{{{ to }}}} means no auto linking? http://www.tiddlytools.com/#UnformattedTextPlugin > Or perhaps \\\ to \\\ adds wiki-syntax to prevent wikify() processing of content by enclosing it inside a pair of matching "superquotes" (THREE double-quotes in a row) Example: """These are unformatted: WikiLink, //italics//, <<macro>>, and so are enjoy, You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
| ||||||||||||||
From: "Florian Cauvin" <florian.cau...@gmail.com>
Date: Tue, 06 Jun 2006 16:04:49 -0000
Local: Tues, Jun 6 2006 12:04 pm
Subject: Re: WikiWords in code
Yeah!!! That seems a good idea that wikiword in {{{ }}} would not be
added in the Missing Tab. That's sad that the MissingTab becomes unusable when you install plugins. You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
| ||||||||||||||
From: Udo Borkowski <Udo.Borkow...@gmx.de>
Date: Fri, 16 Jun 2006 00:57:52 +0200
Local: Thurs, Jun 15 2006 6:57 pm
Subject: Re: WikiWords in code
No solution but just some background information:
In the current implementation the Tiddler text is checked for WikiWords This issue was already discussed some time ago but no nice solution was Udo ---------- You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
| ||||||||||||||
From: "Jeremy Ruston" <jeremy.rus...@gmail.com>
Date: Fri, 16 Jun 2006 08:10:15 +0100
Local: Fri, Jun 16 2006 3:10 am
Subject: Re: WikiWords in code
The idea that runs through my head with this is to introduce the idea
of wikifier "modes". There could be four: normal - wikify text into an HTML DOM element as usual (You can imagine simplying it further, for instance by combining link+normal) The trouble, of course, is that such a change would dribble down to Cheers Jeremy On 15/06/06, Udo Borkowski <Udo.Borkow...@gmx.de> wrote: Jeremy Ruston mailto:jer...@osmosoft.com http://www.tiddlywiki.com You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
| ||||||||||||||
From: Udo Borkowski <Udo.Borkow...@gmx.de>
Date: Fri, 16 Jun 2006 10:13:04 +0200
Local: Fri, Jun 16 2006 4:13 am
Subject: Re: WikiWords in code
I had a slightly different idea that only requires some local changes. Here the idea: every formatter may have the optional property "linkifier" that refers function(links) { This function should add all links to the array "links" that are According to this a formatter like the comment formatter could be { I.e. this formatter will add no links. I assume that very few formatters will require this special linkifier Beside this formatter specific change the Tiddler.prototype.changed must function Wikifier(source,formatter,highlightRegExp,tiddler,links) If links is defined the wikifier adds the links, otherwise it behaves as Jeremy's idea of introducing "modes" is an extension of this idea with Just a note regarding the {{{ }}} case: This is a little special. It may In case this change is going to happen I'd like to remind of the Udo You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
| ||||||||||||||
From: "Martin Budden" <mjbud...@gmail.com>
Date: Sun, 18 Jun 2006 19:26:14 -0000
Local: Sun, Jun 18 2006 3:26 pm
Subject: Re: WikiWords in code
Isn't this overkill? Here's my analysis:
Using plugins can cause your Missing tiddlers tag to fill up spurious Solution: don't autolink wikiwords in tiddlers marked "systemConfig". (Note also that it's not obligatory to put plug-ins in code blocks, so Martin You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
| ||||||||||||||
From: "Eric Shulman" <elsdes...@gmail.com>
Date: Sun, 18 Jun 2006 15:58:27 -0700
Local: Sun, Jun 18 2006 6:58 pm
Subject: Re: WikiWords in code
> Solution: don't autolink wikiwords in tiddlers marked "systemConfig". Tiddlers tagged with 'systemConfig' are already excluded from being > Simple and efficient to implement. Downside is that plug-in writers > need to use the [[ ]] format for their links. I think this is a > reasonable trade-off. included in the list of missing links (as are tiddlers tagged with 'excludeMissing')... this let's you still use use WikiWord autolinking in plugins while avoiding listing the variable names, etc. as missing links. This is straight out of the TW core code: } -e You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
| ||||||||||||||
From: "Martin Budden" <mjbud...@gmail.com>
Date: Mon, 19 Jun 2006 13:07:39 -0700
Local: Mon, Jun 19 2006 4:07 pm
Subject: Re: WikiWords in code
Thanks for pointing this out Eric. I had assumed that Tiddlers with
code mentioned by Henrik were plugins, but I guess I was incorrect in this assumption. Martin You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
| ||||||||||||||
| Create a group - Google Groups - Google Home - Terms of Service - Privacy Policy |
| ©2012 Google |