Quote:
Originally Posted by rty
How do we remove width property in tables? This conversion_options doesn't seem to remove it.
|
1. Sounds like a bug to me - ask for it to be fixed.
2. Meanwhile use preprocess_html, soup.findAll and extract from the soup all tags having attribute width (assuming only tags you want removed have that property), or
3. Use preprocess_regexps. It's basically text-based, not tag-based, search and replace in the html.