I installed HtmlToMarkdown.Net from Nuget and am trying to use according to the sample in the readme:
var converter = new HtmlToMarkdownConverter();
var markdown = converter.Convert(myHtmlString);
The converter.Convert method throws an InvalidOperationException with the message "Stack empty".
Are there additional steps I need to take to set up the converter or format the HTML string?
I installed HtmlToMarkdown.Net from Nuget and am trying to use according to the sample in the readme:
var converter = new HtmlToMarkdownConverter();
var markdown = converter.Convert(myHtmlString);
The converter.Convert method throws an InvalidOperationException with the message "Stack empty".
Are there additional steps I need to take to set up the converter or format the HTML string?