Jeff wrote:

Hi all. Is there anyway to have the plucker viewer _not_ italicize
quoted text? Makes the bodies of the slashdot articles (which are all
quoted) hard to read. thks

Details: 'doze Plucker Desktop 1.4.0.2
         Plucker viewer 1.4
         Palm OS 4.1 (m125)
         Site(s) scooped with sitescooper 3.1.2

Open up the file in /parser/python/PyPlucker called TextParser.py and you can modify the things that you want done for the start and stop of any tag.


For example, <cite> is coded as italics. (it used to be blockquoted I guess, since it has been commented out with a #).

    def start_cite (self, attr):
        self.start_i (attr)
        #self.start_blockquote (attr)


def end_cite (self): self.end_i () #self.end_blockquote ()

I don't know what tag slashdot is using, but you can modify them similarly.

Best wishes,
Robert

_______________________________________________
plucker-list mailing list
[EMAIL PROTECTED]
http://lists.rubberchicken.org/mailman/listinfo/plucker-list

Reply via email to