API Reference

Class

MarkdownNativeHtmlBlock

Namespace OfficeIMO.Markdown
Assembly OfficeIMO.Markdown
Modifiers sealed

Native projection for raw HTML and HTML comments.

Inheritance

Properties

public String Html { get; } #

Raw HTML or comment text.

public Boolean IsComment { get; } #

Whether this block came from an HTML comment.

public String OpeningTag { get; } #

Opening raw HTML tag for recognized raw HTML tag-frame blocks.

public String OpeningMarker { get; } #

Opening raw HTML marker for recognized non-tag raw HTML frames.

public String Body { get; } #

Body content between recognized raw HTML opening and closing tags.

public String ClosingMarker { get; } #

Closing raw HTML marker for recognized non-tag raw HTML frames.

public String ClosingTag { get; } #

Closing raw HTML tag for recognized raw HTML tag-frame blocks.

public Nullable<MarkdownSourceSpan> OpeningTagSourceSpan { get; } #

Source span for a recognized raw HTML opening tag.

public Nullable<MarkdownSourceSpan> RawOpeningMarkerSourceSpan { get; } #

Source span for a recognized raw HTML opening marker.

public Nullable<MarkdownSourceSpan> RawBodySourceSpan { get; } #

Source span for body content between recognized raw HTML opening and closing tags.

public Nullable<MarkdownSourceSpan> RawClosingMarkerSourceSpan { get; } #

Source span for a recognized raw HTML closing marker.

public Nullable<MarkdownSourceSpan> ClosingTagSourceSpan { get; } #

Source span for a recognized raw HTML closing tag.

public String CommentBody { get; } #

HTML comment body without opening or closing comment markers when this block is an HTML comment.

public Nullable<MarkdownSourceSpan> OpeningMarkerSourceSpan { get; } #

Source span for the opening <!-- marker when this block is an HTML comment.

public Nullable<MarkdownSourceSpan> BodySourceSpan { get; } #

Source span for the HTML comment body when this block is an HTML comment.

public Nullable<MarkdownSourceSpan> ClosingMarkerSourceSpan { get; } #

Source span for the closing --> marker when this block is an HTML comment.