OfficeIMO

API Reference

Class

QuoteBlock

Namespace OfficeIMO.Markdown
Assembly OfficeIMO.Markdown
Implements
IMarkdownBlock IChildMarkdownBlockContainer ISyntaxChildrenMarkdownBlock IOwnedSyntaxChildrenMarkdownBlock ISyntaxMarkdownBlock
Modifiers sealed

Simple blockquote block consisting of raw text lines.

Inheritance

Constructors

QuoteBlock 2 overloads
public QuoteBlock() #

Create an empty quote block.

public QuoteBlock(IEnumerable<String> lines) #

Create a quote block with initial lines.

Parameters

lines System.Collections.Generic.IEnumerable{System.String} requiredposition: 0

Properties

public List<String> Lines { get; } #

Raw text lines for a simple quote (used when Children is empty).

public List<IMarkdownBlock> Children { get; } #

Nested blocks rendered inside the quote.

public IReadOnlyList<IMarkdownBlock> ChildBlocks { get; } #

Read-only AST-style view of parsed child blocks inside the quote.

SyntaxChildren #

Nested syntax nodes captured during parsing, when available.