ReverseMarkdown.Net is a Html to Markdown converter library in C#. Conversion is very reliable since HtmlAgilityPack (HAP) library is used for traversing the Html DOM
Added additional constructor with parameter (param Assembly[] additionalAssemblies) to the Converter constructor with support for custom converters and converters that inherit from existing converters.
Changed all private readonly fields in Converter to protected readonly
Changed all public methods in Converter to public virtual
Added test class/case for testing the constructor.
Changes
param Assembly[] additionalAssemblies
) to theConverter
constructor with support for custom converters and converters that inherit from existing converters.private readonly
fields inConverter
toprotected readonly
public
methods inConverter
topublic virtual
Issues
Closes #384