I just spent some time exploring the state-of-the-art with TW after using version 2 happily for a year or so without doing any development work. TW5 is looking stunning and the SVG graphics support (which I assume will get an editor at a later stage - maybe http://code.google.com/p/svg-edit/) will open up whole new areas of use for me.
As an experiment I tried:
((Motovun Jack.jpg))
After all he's just a tiddler (and a cute one at that) so transclusion should work as for any other tiddler, right? And, sure enough, it does work.
So why not remove (or deprecate if you want backward compatibility) the:
[img[Motovun Jack.jpg]]
syntax?
The tooltip and link parameters could usefuly be added to the standard transclusion syntax as they might be useful on other types of transclusion. Otherwise, the transclusion syntax is much more powerful and would open all kinds of extra possibilities for image selection and rendering.
Greatly looking forward to further developments!
John
--
You received this message because you are subscribed to the Google Groups "TiddlyWikiDev" group.
To view this discussion on the web visit https://groups.google.com/d/msg/tiddlywikidev/-/nk0gLQ69s2UJ.
To post to this group, send email to tiddly...@googlegroups.com.
To unsubscribe from this group, send email to tiddlywikide...@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/tiddlywikidev?hl=en.
Best regardsJohn.
--
You received this message because you are subscribed to the Google Groups "TiddlyWikiDev" group.
To view this discussion on the web visit https://groups.google.com/d/msg/tiddlywikidev/-/aCnvkv978Y8J.
It seems that it;s still not possible to display images from an http:// reference as it was in the previous TiddlyWIKI.
I have been rolling out a solution based on use of "img" links and was hoping to how how much nicer TiddyWIKI5 is to look at. We keep a load of screenshots as files on a external system - without these links working my solution does not either.
Any chance that you're secretly holding back this feature?
--
You received this message because you are subscribed to the Google Groups "TiddlyWikiDev" group.
To unsubscribe from this group and stop receiving emails from it, send an email to tiddlywikide...@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywikidev.
For more options, visit https://groups.google.com/groups/opt_out.
I am a bit confused about all this.
Right now, all I see are loads of options to define stuff and seemingly too few standards.
Don't get me wrong, I enjoy flexibility. But what I don't see is users going about to define custom linkimage macros. o.O
As for the OP, I certainly don't see how transclusion caters as the standard way of rendering images.
At some point your markup or tiddlers need to say "this is an image" and be able to parse some url in one way or another.
I certainly don't want or need extra tiddlers for every image that I want to display. All I want is good ol' image markup. If using enhanced image features means to rather employ an enhanced image macro, fine. But the basic stuff, including placement, css-class and size should be core markup, not some macro that extends on that.
What I find more important than what is being used in terms of markup is the ability to have a globally defined path to some image or file host and then be able to reference that in the urls for the resources I want to pull, e.g.
<img src="img:folder/image.jpg">
Whereas the renderer is smart enough to replace 'img:' with a a globally defined variable of sorts.
Hi Tobias,
I am a bit confused about all this.
TW5 is under active development, with lots of discussion like this that are influencing and shaping it. It will get less confusing when it settles down.
The idea of proxy tiddlers for external images wouldn't be the only way to handle images, just one of the options.
What I find more important than what is being used in terms of markup is the ability to have a globally defined path to some image or file host and then be able to reference that in the urls for the resources I want to pull, e.g.
<img src="img:folder/image.jpg">
Whereas the renderer is smart enough to replace 'img:' with a a globally defined variable of sorts.You can do this with a macro:\define myImageUrl(partialUrl)\end...<img src=<<myImageUrl "folder/image.jpg">> />