Returns null to indicate that the image should be skipped.
Remarks
This strategy is useful when you want to convert a document to Markdown without saving the actual image files. When this strategy is used, the output Markdown will still contain image references (e.g., ), but the actual image files will not be saved to disk.
Examples
The following example shows how to use SkipImagesStrategy when converting a document:
varoptions=newConvertOptions{ImageExportStrategy=newSkipImagesStrategy()};stringmarkdown=MarkdownConverter.ToMarkdown("document.docx",options);// Image references remain in the markdown but no files are written