Load a file of a specific format

This example demonstrates how to load a file of some particular format.

AdvancedUsage.Loading.LoadingFileOfSpecificFormat

// Explicitly specifying the format of a file to load you can spare some time on detecting the format
var loadOptions = new LoadOptions(FileFormat.Spreadsheet);

using (var converter = new MarkdownConverter("source.xls", loadOptions))
{
	// ...
}

More resources

GitHub examples

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