ExBUG 9 submited by Christophe Goudey
Description
I made a technical documentation with things like :
Mime-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Content-Disposition: inline
From: root <root@somewhat.fr>
and PDF generation fails because of <root@somewhat.fr>
probably being interpreted as a miscorrect html tag. It
shouldn't happen at least when this is inside < pre > tags
Logged In: YES
user_id=1482852
this is because handling html etra code is not correct.
change (in src/wiki2latex.py) :
( '<[^$?].*?>' , ''),
by :
( '<[^$?](.*?@.*)>' , r'$<$\1$>$' ),
( '<[^$?].*?>' , ''),
it's fork fine for me.
Logged In: YES
user_id=1482852
is the latest cvs version correct this bug ?