ddoc questions
Derek Parnell
derek at psych.ward
Mon May 8 14:25:38 PDT 2006
On Tue, 09 May 2006 02:57:27 +1000, Carlos Santander
<csantander619 at gmail.com> wrote:
> How does the LINK2 macro works? I have tried different things but I get
> something like this (from memory):
>
> $(LINK2 http://www.digitalmars.com/ DigitalMars)
>
> <a href="http://www.digitalmars.com/ DigitalMars"></a>
>
> What am I missing?
A comma. The macro is defined as
<a href="$1">$+</a>
which means that the first parameter is the 'href' and the rest are
bracketed by the <a> </a> tags.
$(LINK2 http://www.digitalmars.com/, DigitalMars)
Each of the parameters in the macro are comma delimited.
--
Derek Parnell
Melbourne, Australia
More information about the Digitalmars-d-learn
mailing list