56a57,58
> LYNX_OPTS = ''
> W3M_OPTS = ''
373a376,377
>         self.lynx_opts     += ' ' + LYNX_OPTS
>         self.w3m_opts      += ' ' + W3M_OPTS
819,820c823,824
<             shell('"%s" -dump "%s" > "%s"' %
<                  (LYNX, html_file, text_file))
---
>             shell('"%s" %s -dump "%s" > "%s"' %
>                  (LYNX, self.lynx_opts, html_file, text_file))
828,829c832,833
<             shell('"%s" -cols 70 -dump -T text/html -no-graph "%s" > "%s"' %
<                  (W3M, html_file, text_file))
---
>             shell('"%s" %s -cols 70 -dump -T text/html -no-graph "%s" > "%s"' %
>                  (W3M, self.w3m_opts, html_file, text_file))
923a928,933
>     parser.add_option('--lynx-opts',
>         action='append', dest='lynx_opts', default=[],
>         metavar='LYNX_OPTS', help='lynx options')
>     parser.add_option('--w3m-opts',
>         action='append', dest='w3m_opts', default=[],
>         metavar='W3M_OPTS', help='w3m plugin options')
