ikiwiki/doc/forum/link_to_an_image_inside_the...

45 lines
2.0 KiB
Plaintext
Raw Normal View History

2010-01-09 20:47:32 +01:00
how can I create a link to an image which is part of the wiki, without having it inserted in my page?
I tought this:
2010-01-09 20:48:19 +01:00
\[[look at this|img/lolcat.png]]
2010-01-09 20:47:32 +01:00
would work, but it doesn't.
2010-01-09 22:11:25 +01:00
Any hints? --[[jerojasro]]
2010-01-09 21:50:40 +01:00
> Well, currently the syntax above will display the image
> inline with the specified link text used as an alt attribute. Although
> that does not seem to be documented anywhere.
>
> A few places that use that (found with `git grep '\[\[' | egrep 'png|gif|jpeg|jpg' |grep \|`):
>
2010-01-09 21:51:31 +01:00
> * [[logo]] uses it to provide useful alt texts for the logos. (This
2010-01-09 21:51:52 +01:00
> could easily be changed to use [[ikiwiki/directive/img]] though.)
2010-01-09 21:50:40 +01:00
> * The `change.tmpl` template uses it to display
> the [[diff|wikiicons/diff.png]] with a very useful "diff" alt text.
2010-01-09 21:51:52 +01:00
> Using [[ikiwiki/directive/img]] here would mean that the
2010-01-09 21:51:31 +01:00
> [[plugins/recentchanges]] plugin would depend upon the img
2010-01-09 21:50:40 +01:00
> plugin.
>
> I do like your suggestion, it makes more sense than the current behavior.
> I'm not sure the transition pain to get from here to there is worth it,
> though.
>
> More broadly, if I were writing ikiwiki now, I might choose to leave out the
> auto-inlining of images altogether. In practice, it has added a certian level
> of complexity to ikiwiki, with numerous plugins needing to specify
> `noimageinline` to avoid accidentially inlining an image. And there has not
> been a lot of payoff from having the auto-inlining feature implicitly
> available most places. And the img directive allows much needed control over
> display, so it would be better for users to not have to worry about its
> lesser cousin. But the transition from here to *there* would be another order
> of pain.
>
> Anyway, the cheap and simple answer to your question is to use html
> or markdown instead of a [[ikiwiki/wikilink]]. Ie,
> `[look at this](img/lolcat.jpg)`. --[[Joey]]
2010-01-09 22:11:25 +01:00
> > thanks a lot, that's a quite straightforward solution. I actually wrote a
> > broken plugin to do that, and now I can ditch it --[[jerojasro]]