www.digitalmars.com         C & C++   DMDScript  

digitalmars.D.learn - New changes to DDOC where is the <u> tag coming from in parent

reply "Gary Willoughby" <dev nomad.so> writes:
Below is a change that results from re-generating my 
documentation using ddoc. I wonder where the new <u> tags are 
coming from that wrap the parent class name.

-<div class="module-members"><h2><a name="Button"></a>class <span 
class="symbol">Button</span>: tkd.widget.textwidget.TextWidget;
+<div class="module-members"><h2><a name="Button"></a>class <span 
class="symbol">Button</span>: 
<u>tkd.widget.textwidget.TextWidget</u>;

Has there been a new ddoc symbol defined and not mentioned in: 
http://dlang.org/ddoc.html I've redefined most of these in my own 
.ddoc file and can't seem to get rid of the new tag. Is there a 
master ddoc file being read from somewhere?

Any help?
Sep 22 2014
next sibling parent reply "Gary Willoughby" <dev nomad.so> writes:
On Monday, 22 September 2014 at 20:44:25 UTC, Gary Willoughby 
wrote:
 Below is a change that results from re-generating my 
 documentation using ddoc. I wonder where the new <u> tags are 
 coming from that wrap the parent class name.

 -<div class="module-members"><h2><a name="Button"></a>class 
 <span class="symbol">Button</span>: 
 tkd.widget.textwidget.TextWidget;
 +<div class="module-members"><h2><a name="Button"></a>class 
 <span class="symbol">Button</span>: 
 <u>tkd.widget.textwidget.TextWidget</u>;

 Has there been a new ddoc symbol defined and not mentioned in: 
 http://dlang.org/ddoc.html I've redefined most of these in my 
 own .ddoc file and can't seem to get rid of the new tag. Is 
 there a master ddoc file being read from somewhere?

 Any help?
This has started to occur with the latest compiler release.
Sep 23 2014
parent "kiran kumari" <kiranfabzen gmail.com> writes:
On Tuesday, 23 September 2014 at 07:26:06 UTC, Gary Willoughby
wrote:
 On Monday, 22 September 2014 at 20:44:25 UTC, Gary Willoughby 
 wrote:
 Below is a change that results from re-generating my 
 documentation using ddoc. I wonder where the new <u> tags are 
 coming from that wrap the parent class name.

 -<div class="module-members"><h2><a name="Button"></a>class 
 <span class="symbol">Button</span>: 
 tkd.widget.textwidget.TextWidget;
 +<div class="module-members"><h2><a name="Button"></a>class 
 <span class="symbol">Button</span>: 
 <u>tkd.widget.textwidget.TextWidget</u>;

 Has there been a new ddoc symbol defined and not mentioned in: 
 http://dlang.org/ddoc.html I've redefined most of these in my 
 own .ddoc file and can't seem to get rid of the new tag. Is 
 there a master ddoc file being read from somewhere?

 Any help?
This has started to occur with the latest compiler release.
see mora example http://techgurulab.com/course/java-quiz-online/
Sep 23 2014
prev sibling next sibling parent "Kagamin" <spam here.lot> writes:
https://issues.dlang.org/show_bug.cgi?id=198
Sep 23 2014
prev sibling next sibling parent reply "Kagamin" <spam here.lot> writes:
On Monday, 22 September 2014 at 20:44:25 UTC, Gary Willoughby 
wrote:
 Is there a master ddoc file being read from somewhere?
https://github.com/D-Programming-Language/dmd/blob/master/src/doc.c#L132
Sep 23 2014
parent "Gary Willoughby" <dev nomad.so> writes:
On Tuesday, 23 September 2014 at 10:54:35 UTC, Kagamin wrote:
 On Monday, 22 September 2014 at 20:44:25 UTC, Gary Willoughby 
 wrote:
 Is there a master ddoc file being read from somewhere?
https://github.com/D-Programming-Language/dmd/blob/master/src/doc.c#L132
Thanks! I'd bet my arse it's DDOC_PSUPER_SYMBOL! I haven't seen that one before, i'll try it later.
Sep 23 2014
prev sibling parent "kiran kumari" <kiranfabzen gmail.com> writes:
On Monday, 22 September 2014 at 20:44:25 UTC, Gary Willoughby
wrote:
 Below is a change that results from re-generating my 
 documentation using ddoc. I wonder where the new <u> tags are 
 coming from that wrap the parent class name.

 -<div class="module-members"><h2><a name="Button"></a>class 
 <span class="symbol">Button</span>: 
 tkd.widget.textwidget.TextWidget;
 +<div class="module-members"><h2><a name="Button"></a>class 
 <span class="symbol">Button</span>: 
 <u>tkd.widget.textwidget.TextWidget</u>;

 Has there been a new ddoc symbol defined and not mentioned in: 
 http://dlang.org/ddoc.html I've redefined most of these in my 
 own .ddoc file and can't seem to get rid of the new tag. Is 
 there a master ddoc file being read from somewhere?

 Any help?
see more example http://techgurulab.com/course/java-quiz-online/
Sep 23 2014