http://d.puremagic.com/issues/show_bug.cgi?id=9676

           Summary: Html doc generation with <del>...</del> around
                    deprecated functions names
           Product: D
           Version: D2
          Platform: All
        OS/Version: All
            Status: NEW
          Severity: enhancement
          Priority: P2
         Component: DMD
        AssignedTo: [email protected]
        ReportedBy: [email protected]


--- Comment #0 from [email protected] 2013-03-09 08:58:42 PST ---
A low priority enhancement request.

This D code:


module test;
///
deprecated void foo() {}
void main() {}



Compiled with doc generation (-D) gives the HTML:



<html><head>
        <META http-equiv="content-type" content="text/html; charset=utf-8">
        <title>test</title>
        </head><body>
        <h1>test</h1>
        <!-- Generated by Ddoc from temp.d -->
<br><br>
<dl><dt><big><a name="foo"></a>deprecated void <u>foo</u>();
</big></dt>
<dd><br><br>
</dd>
</dl>
<hr><small>Page generated by <a href="http://dlang.org/ddoc.html";>Ddoc</a>.
</small>
</body></html>



I suggest to add <del>...</del> pairs around the name of deprecated functions:

<dl><dt><big><a name="foo"></a>deprecated <del>void <u>myfunc</u>();</del>

-- 
Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email
------- You are receiving this mail because: -------

Reply via email to