Re: ddoc crossreferences

2008-11-29 Thread Morusaka
I think I've find a way to make it work (with CandyDoc at least) I've definied the following macro: /** * Macros: * DDOC_PSYMBOL = $0explorer.outline.addDecl('$0'); */ and when I want a link to some definition, I've to write a line like this: // immagine you want to link to opEquals /**

Re: ddoc crossreferences

2008-11-29 Thread Morusaka
Morusaka Wrote: > Ok, with the help of grep i've found a lot of examples in Tango sources, for > instance in: tango/text/locale/Core.d > > $(LINK2 #whereToGo, linkName) > ... > ... > ... > $(ANCHOR whereToGo) > ... > ... > ... > Uhm... I'm not sure where ANCHOR macro is defined... I can't find

Re: ddoc crossreferences

2008-11-29 Thread Morusaka
Ok, with the help of grep i've found a lot of examples in Tango sources, for instance in: tango/text/locale/Core.d $(LINK2 #whereToGo, linkName) ... ... ... $(ANCHOR whereToGo) ... ... ... Now I wonder if this is the right way to do this... i mean if the documentation has to be processed in ord

ddoc crossreferences

2008-11-29 Thread Morusaka
Hi, is there a way to include cross references in my documentation. For example, i'd like to do something like: /** * foo bla bla bla * See_Also: * bar */ void foo() {...} /** * bar bla bla * See_Also: * foo */ void bar() {...} and i'd like elements in See_Also section to be link to o