Gets the document title extracted from its metadata, or Empty if no title is available.
Remarks
Use GetDocumentInfo or GetInfo to obtain an instance of this class. The information is extracted from the source document without performing a full conversion, so it is a lightweight way to inspect a file before converting it.
Examples
Inspect a document before converting it:
// Using the static helperDocumentInfoinfo=MarkdownConverter.GetInfo("report.docx");Console.WriteLine($"Format: {info.FileFormat}");Console.WriteLine($"Pages: {info.PageCount}");Console.WriteLine($"Title: {info.Title}");Console.WriteLine($"Author: {info.Author}");if(info.IsEncrypted)Console.WriteLine("The document is password-protected.");