Skip image

This example demonstrates how to skips saving images during document conversion.

AdvancedUsage.Strategy.ImageSkipStrategy

using (var converter = new MarkdownConverter("example.pdf"))
{
    var options = new DocumentConverterOptions
    {
        ImageExportStrategy = new SkipImagesStrategy()
    };

    converter.Convert("output.md", options);
}

More resources

GitHub examples

You may easily run the code above and see the feature in action in our GitHub examples: