C# 클래스 UniversalMarkdown.Parse.MarkdownDocument

A class used to represent abstract markdown.
상속: MarkdownBlock
파일 보기 프로젝트 열기: QuinnDamerell/UniversalMarkdown 1 사용 예제들

공개 메소드들

메소드 설명
LookUpReference ( string id ) : LinkReferenceBlock

Looks up a reference using the ID. A reference is a line that looks like this: [foo]: http://example.com/

MarkdownDocument ( ) : System

Initializes a new markdown document.

Parse ( string markdownText ) : void

Parses markdown document text.

ToString ( ) : string

Converts the object into it's textual representation.

비공개 메소드들

메소드 설명
Parse ( string markdown, int start, int end, int quoteDepth, int &actualEnd ) : List

Parses a markdown document.

메소드 상세

LookUpReference() 공개 메소드

Looks up a reference using the ID. A reference is a line that looks like this: [foo]: http://example.com/
public LookUpReference ( string id ) : LinkReferenceBlock
id string The ID of the reference (case insensitive).
리턴 UniversalMarkdown.Parse.Elements.LinkReferenceBlock

MarkdownDocument() 공개 메소드

Initializes a new markdown document.
public MarkdownDocument ( ) : System
리턴 System

Parse() 공개 메소드

Parses markdown document text.
public Parse ( string markdownText ) : void
markdownText string The markdown text.
리턴 void

ToString() 공개 메소드

Converts the object into it's textual representation.
public ToString ( ) : string
리턴 string