Quote:
Originally Posted by Brett Merkey
With a bit of trial and error, you should be able to find a regular expression to find <img> tags and replace them with nothing. In fact, I just tested with expression <img.*?>
|
What about instead adding this to the css: img { display: none; }
If that works then better would be to examine the html and see if images are wrapped in a figure tag and put the display none on it (or both figure and img as well as caption?).