GroupDocs.Parser for .NET 24.10 Release Notes
This page contains release notes for GroupDocs.Parser for .NET 24.10
Full List of Issues Covering all Changes in this Release
Key | Summary | Category |
---|---|---|
PARSERNET-2483 | Improve markdown files parsing | Improvement |
PARSERNET-2499 | Cannot use GroupDocs.Parser together with GroupDocs.Conversion in .NET | Bug |
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());
}
}