C# 클래스 UniversalMarkdown.Parse.Elements.MarkdownLinkInline

상속: MarkdownInline
파일 보기 프로젝트 열기: QuinnDamerell/UniversalMarkdown 1 사용 예제들

공개 메소드들

메소드 설명
MarkdownLinkInline ( ) : System

Initializes a new markdown link.

ResolveReference ( MarkdownDocument document ) : void

If this is a reference-style link, attempts to converts it to a regular link.

ToString ( ) : string

Converts the object into it's textual representation.

비공개 메소드들

메소드 설명
AddTripChars ( List tripCharHelpers ) : void

Returns the chars that if found means we might have a match.

IsUrlValid ( string url ) : bool

Checks if the given URL is allowed in a markdown link.

Parse ( string markdown, int start, int maxEnd ) : Common.InlineParseResult

Attempts to parse a markdown link e.g. "[](http://www.reddit.com)".

메소드 상세

MarkdownLinkInline() 공개 메소드

Initializes a new markdown link.
public MarkdownLinkInline ( ) : System
리턴 System

ResolveReference() 공개 메소드

If this is a reference-style link, attempts to converts it to a regular link.
public ResolveReference ( MarkdownDocument document ) : void
document MarkdownDocument The document containing the list of references.
리턴 void

ToString() 공개 메소드

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