[Zope] Re: How to link inline graphics on a Zwiki page?

Simon Michael simon@joyful.com
08 Jun 2001 17:27:04 -0700


"Jason Cunliffe" <jasonic@panix.com> writes:
> But, is there a way to make relative links works in Zwiki page?  like
> this:
> 
> <a href ="BigImage"><mig src="LittleImage"></a>

There's several ways to inline graphics, including the ones at bottom
of http://zwiki.org/AdvancedEditOptions, which you've probably found
out about.

Thumbnails - here's one way that works:

<a href="image.png"><img src="thumbnail.png"></a>

assuming your page mode allows html and that your images are sitting
in the wiki folder. With wiki-named images, you might need to begin
the line with ! to avoid problems - I'm not sure.

In your shoes, I would try making a little pythonscript or method that
you would call with one or more arguments, which would generate the
appropriate thumbnail link.

Does this help ?