API Reference

Class

MarkdownRoundtripResult

Namespace OfficeIMO.Markdown
Assembly OfficeIMO.Markdown
Modifiers sealed

Result of a markdown roundtrip write attempt.

Inheritance

  • Object
  • MarkdownRoundtripResult

Usage

This type appears in these public API surfaces even when no hand-authored example is attached directly to the page.

Constructors

public MarkdownRoundtripResult(String markdown, IReadOnlyList<MarkdownRoundtripDiagnostic> diagnostics = null) #

Creates a roundtrip result.

Parameters

markdown System.String requiredposition: 0
diagnostics System.Collections.Generic.IReadOnlyList{OfficeIMO.Markdown.MarkdownRoundtripDiagnostic} = null optionalposition: 1

Properties

public String Markdown { get; } #

The emitted markdown.

public IReadOnlyList<MarkdownRoundtripDiagnostic> Diagnostics { get; } #

Diagnostics describing any fallback from lossless source preservation.

public Boolean IsLossless { get; } #

True when the writer preserved the original source without fallbacks.