DDoc module description?

Gary Willoughby via Digitalmars-d-learn digitalmars-d-learn at puremagic.com
Sun Oct 19 09:59:09 PDT 2014


On Sunday, 19 October 2014 at 16:44:25 UTC, Jeremy DeHaan wrote:
> The problem seems to be when I do something like this.
>
> *blah.d*
>
> ///A module that contains blahblahblah.
> module something.blah;
>
> //Stuff goes here
>
> What will end up happening is the generated html file turns out 
> like this:
>
> <html>
>     <!-- All the generated stuff here -->
> </html>
> A module that contains blahblahblah.

Try it using a normal comment style like this:

     /**
      * A module that contains blahblahblah.
      */
     module something.blah;

See if that compiles differently, it may be a bug with triple 
slash comments.


More information about the Digitalmars-d-learn mailing list