Skip to content

T_Cyjb_Markdown_Document

CYJB edited this page Feb 1, 2024 · 2 revisions

Document 类

表示一个 Markdown 文档。

继承层次

System.Object
  Cyjb.Markdown.Syntax.Node
    Cyjb.Markdown.Document
Namespace: Cyjb.Markdown
Assembly: Cyjb.Markdown (in Cyjb.Markdown.dll) Version: 1.0.2+f073417ab111e884603147b5dc42e8ccc863a984

语法

C#

public sealed class Document : Node, 
	INodeContainer<BlockNode>

The Document type exposes the following members.

构造函数

 

名称 说明
公共方法 Document 使用指定的文本范围初始化 Document 类的新实例。
  Back to Top

属性

 

名称 说明
公共属性 Children 获取子节点列表。
公共属性 FirstChild 获取第一个子节点,如果不存在则返回 null
公共属性 IsHtml 获取节点是否是 HTML 节点。 (继承自 Node。)
公共属性 Kind 获取节点的类型。 (继承自 Node。)
公共属性 LastChild 获取最后一个子节点,如果不存在则返回 null
公共属性 LinePositionSpan 获取节点的行列位置范围。 (继承自 Node。)
公共属性 Locator 获取或设置关联到的行定位器。 (继承自 Node。)
公共属性 Next 获取后继兄弟节点。 (重写 Node.Next.)
公共属性 Parent 获取所属父节点。 (继承自 Node。)
公共属性 Prev 获取前驱兄弟节点。 (重写 Node.Prev.)
公共属性 Span 获取或设置节点的文本范围。 (继承自 Node。)
  Back to Top

方法

 

名称 说明
公共方法 Accept(SyntaxVisitor) 应用指定的访问器。 (重写 Node.Accept(SyntaxVisitor).)
公共方法 Accept(TResult)(SyntaxVisitor(TResult)) 应用指定的访问器。 (重写 Node.Accept(TResult)(SyntaxVisitor(TResult)).)
公共方法 Accept(TResult)(SyntaxVisitor(TResult)) 应用指定的访问器。 (继承自 Node。)
公共方法 Equals Determines whether the specified object is equal to the current object. (继承自 Object。)
公共方法 GetHashCode Serves as the default hash function. (继承自 Object。)
公共方法 GetType Gets the Type of the current instance. (继承自 Object。)
公共方法静态成员 Parse(String, Nullable(ParseOptions)) 解析指定 Markdown 字符串,并返回解析后的语法树。
公共方法静态成员 Parse(TextReader, Nullable(ParseOptions)) 解析指定 Markdown 字符串,并返回解析后的语法树。
公共方法 Remove 将当前节点从父节点中移除。 (继承自 Node。)
公共方法 ToString 返回当前对象的字符串表示形式。 (继承自 Node。)
  Back to Top

参见

Reference

Cyjb.Markdown 命名空间

Clone this wiki locally