GroupDocs.Parser for .NET 24.10 Release Notes

Full List of Issues Covering all Changes in this Release

KeySummaryCategory
PARSERNET-2483Improve markdown files parsingImprovement
PARSERNET-2499Cannot use GroupDocs.Parser together with GroupDocs.Conversion in .NETBug

Public API and Backward Incompatible Changes

Improve markdown files parsing

Description

This improves the parsing functionality of markdown files.

Public API changes

No API changes.

Usage

The following example shows how to extract a text from the markdown document:

// Create an instance of Parser class
using (Parser parser = new Parser("document.md"))
{
    // Extract a text into the reader
    using (TextReader reader = parser.GetText())
    {
        // Print a text from the document
        // If text extraction isn't supported, a reader is null
        Console.WriteLine(reader == null ? "Text extraction isn't supported" : reader.ReadToEnd());
    }
}