Thread overview
ddoc documentation
May 08, 2006
Carlos Santander
May 12, 2006
Walter Bright
May 12, 2006
jcc7
May 08, 2006
In the section Predefined Macros, the value for DDOC_PARAMS is wrong. It should be

$(B Params:)$(BR)
$(TABLE $0)$(BR)

Instead of the current:

$(TABLE $0)$(BR)$(BR)

Maybe all the definitions should be copied from dmd/doc.c just to be sure?

-- 
Carlos Santander Bernal
May 12, 2006
Thanks, fixed.
May 12, 2006
In article <e41j46$1akl$1@digitaldaemon.com>, Walter Bright says...
>
>
>Thanks, fixed.

Thanks for the fix.

Also in the "Predefined Macros" example, I think that
DL =	<dl>$$0</dl>

should be
DL =	<dl>$0</dl>

jcc7