From mboxrd@z Thu Jan 1 00:00:00 1970 Message-ID: <3cd534e365e505ac353aa0c4a24de0a5@comcast.net> To: 9fans@cse.psu.edu From: Gregory Pavelcak Date: Wed, 23 Aug 2006 07:28:10 -0400 MIME-Version: 1.0 Content-Type: text/plain; charset="US-ASCII" Content-Transfer-Encoding: 7bit Subject: [9fans] Mothra and when it renders the page, making for unnecessary clutter. I would like to convince mothra to just ignore the stuff. Is there an easy way to do this? I have already tried adding the tag to html.h and html.syntax.c, then, in rdhtml.c I added `Tag_style' to the list with `Tag_comment', `Tag_html', etc. but that didn't have any effect. I can't imagine that I'm too far off track here though. Any pointers appreciated. Thanks. Greg From mboxrd@z Thu Jan 1 00:00:00 1970 Message-ID: <7a1b3894b1a2c941529fd25f3b4422e1@hamnavoe.com> To: 9fans@cse.psu.edu Subject: Re: [9fans] Mothra and when it renders the page, making > for unnecessary clutter. I would like to convince mothra to just > ignore the stuff. Is there an easy way to do this? What I would do is add a case Tag_style to the first switch(g.tag) statement in plrdhtml(), which would just call pl_gettoken() repeatedly until the matching ENDTAG is returned. -- Richard From mboxrd@z Thu Jan 1 00:00:00 1970 Message-ID: <0ca9967210226fd0a398030c01f852ce@comcast.net> To: 9fans@cse.psu.edu Subject: Re: [9fans] Mothra and when it renders the page, making > for unnecessary clutter. I would like to convince mothra to just > ignore the stuff. Is there an easy way to do this? What I would do is add a case Tag_style to the first switch(g.tag) statement in plrdhtml(), which would just call pl_gettoken() repeatedly until the matching ENDTAG is returned. -- Richard --upas-twlyzhonvfmygwagbxqneomfcm-- From mboxrd@z Thu Jan 1 00:00:00 1970 Message-ID: <3ca3b662696954350b24db0c30e75551@hamnavoe.com> To: 9fans@cse.psu.edu Subject: Re: [9fans] Mothra and