You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm using ddoc to generate a lot of documentation and i've
noticed in the new 2.064.2 version the type is now included with
the identifier in parameter lists. Can this be made optional or
able to be controlled by a macro?
The current parameter identifier macro is this:
DDOC_PARAM_ID = $(TD $0)
in which $0 was substituted for the parameter identifier, now it
substitutes $0 for type *and* identifier. It would be nice to have
something like this:
DDOC_PARAM_TYPE = <spanclass="identifier-type">$0</span>
DDOC_PARAM_ID = <spanclass="identifier">$0</span>
DDOC_PARAM = $(TD $(DDOC_PARAM_TYPE) $(DDOC_PARAM_ID))
So i can style them individually or completely omit the type as before
which is what i prefer to aid readability.
The text was updated successfully, but these errors were encountered:
Gary Willoughby reported this on 2013-11-14T10:23:12Z
Transferred from https://issues.dlang.org/show_bug.cgi?id=11515
CC List
Description
The text was updated successfully, but these errors were encountered: