The DITA compiler is complaining about lots of missing images.
These are images that have had ` replaced with_. But, when we docopytree` we copy the images over verbatim.
So, I think we have two separate sanitize methods:
For content file names that we control. replace ` with_`
For images that are linked to or included, replace ` with%20`
The test case for this is daf 1b.jpg under anchor_pics.html.
We are being "sheilded" from this issue because code in extract_class_images is producing duplicates of files with spaces, replacing spaces with underscores. Well, some code is putting a daf_1b.jpeg into the Contents/Images folder.
The DITA compiler is complaining about lots of missing images.
These are images that have had
` replaced with
_. But, when we do
copytree` we copy the images over verbatim.So, I think we have two separate
sanitize
methods:` with
_`` with
%20`The test case for this is
daf 1b.jpg
underanchor_pics.html
.We are being "sheilded" from this issue because code in extract_class_images is producing duplicates of files with spaces, replacing spaces with underscores. Well, some code is putting a
daf_1b.jpeg
into theContents/Images
folder.