Not to distract from Craig's specific questions, which I fear I can't
answer, but I think this is related. Is there some accepted way to make
it visually apparent that part of a tiddler is in fact a transclusion?
If I have a CoolBeasts tiddler saying
Cats are cool. <<tiddler CoolDogs>>
to result in
Cats are cool. Dogs are cool.
I'd want there to be some subtle sign that the second phrase is
transcluded, as well as a way to open the CoolDogs tiddler and -
following Craig - edit it directly. (Say, a faint dotted underlining,
with small 'view' and 'edit' buttons. Maybe something indicating nesting
depth.) Ideally this functionality would be associated with the
transclusion itself. So I wouldn't have to add it to every tiddler or
section I might want to transclude as in Craig's attempt (I believe -
can't get it to work), nor have to manually add it in the transcluding
tiddler for every transclusion (as with EditSectionPlugin). There
wouldn't be big buttons breaking the text flow either.
So maybe we are talking about a sort of <<tiddler_interactive>> macro
for this type of transclusion? And a parallel <<slider_interactive>> ?
Has this been done?
Kosmaton
<span refresh="content" tiddler="SomethingOrOther">
...wikified content
</span>
Therefore, at least on modern browsers, it ought to be possible to at
least add a dotted border around all transcluded text:
span[refresh="content"] {
border: 1px dotted red;
}
You'd need something like Eric's plugin to go further and add the edit buttons.
Best wishes
Jeremy
> --
> You received this message because you are subscribed to the Google Groups "TiddlyWiki" group.
> To post to this group, send email to tiddl...@googlegroups.com.
> To unsubscribe from this group, send email to tiddlywiki+...@googlegroups.com.
> For more options, visit this group at http://groups.google.com/group/tiddlywiki?hl=en.
>
>
--
Jeremy Ruston
mailto:jer...@osmosoft.com
http://www.tiddlywiki.com
whatever, good find -- however using TiddlerWithEditPlugin would make it
even more important to be able to distinguish the transclusions; Jeremy,
your solution to this works partially, but in the PageTemplate I'm using
(NeUIem - based) there are a few elements that use [refresh="content"]
so unfortunately they get the border too. I guess changing their <span>
tags into <div> might help... not sure how much risk there is to run
into other undesired cases.
cheers,
Kosmaton