Load from a stream

This example demonstrates how to load a file from a stream.

AdvancedUsage.Loading.LoadFromStream

using (Stream stream = File.Open("source.doc", FileMode.Open, FileAccess.ReadWrite))
using (var converter = new MarkdownConverter(stream))
{
	// ...
}

More resources

GitHub examples

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