PDA

View Full Version : Hotlinking in the Image description/text


Pat Chuprina
08-02-2006, 06:44 PM
I know this is probably simple question and answer, I've looked with no apparent success, so here goes:

I want to mention a web site name in my description/text of an image entry. I also want readers to be able to click on that word and be brought to that site. Without showing the code to the reader what do I put in my description/text entry?

Thanx in advance for any explanations and/or answers.
Patrick

Connie
08-02-2006, 08:06 PM
read the syntax description of the markdown!

This is [an example](http://example.com/ "Title") inline link.

[This link](http://example.net/) has no title attribute.
Will produce:
<p>This is <a href="http://example.com/" title="Title">
an example</a> inline link.</p>

<p><a href="http://example.net/">This link</a> has no
title attribute.</p>