Property | Type | Description | |
---|---|---|---|
AddTripChars | void | ||
FindEndOfRedditLink | int | ||
FindUrlEnd | int | ||
ParseAngleBracketLink | |||
ParseDoubleSlashLink | |||
ParseEmailAddress | |||
ParsePartialLink | |||
ParseRedditLink | |||
ParseSingleSlashLink | |||
ParseUrl |
Method | Description | |
---|---|---|
HyperlinkInline ( ) : System |
Initializes a new markdown URL.
|
|
ToString ( ) : string |
Converts the object into it's textual representation.
|
Method | Description | |
---|---|---|
AddTripChars ( List |
Returns the chars that if found means we might have a match.
|
|
FindEndOfRedditLink ( string markdown, int start, int end ) : int |
Finds the next character that is not a letter, digit or underscore in a range.
|
|
FindUrlEnd ( string markdown, int start, int maxEnd ) : int |
Finds the end of a URL.
|
|
ParseAngleBracketLink ( string markdown, int start, int maxEnd ) : |
Attempts to parse a URL within angle brackets e.g. "
|
|
ParseDoubleSlashLink ( string markdown, int start, int maxEnd ) : |
Parse a link of the form "/r/news" or "/u/quinbd".
|
|
ParseEmailAddress ( string markdown, int minStart, int tripPos, int maxEnd ) : |
Attempts to parse an email address e.g. "[email protected]".
|
|
ParsePartialLink ( string markdown, int tripPos, int maxEnd ) : |
Attempts to parse a URL without a scheme e.g. "www.reddit.com".
|
|
ParseRedditLink ( string markdown, int start, int maxEnd ) : |
Attempts to parse a subreddit link e.g. "/r/news" or "r/news".
|
|
ParseSingleSlashLink ( string markdown, int start, int maxEnd ) : |
Parse a link of the form "r/news" or "u/quinbd".
|
|
ParseUrl ( string markdown, int tripPos, int maxEnd ) : |
Attempts to parse a URL e.g. "http://www.reddit.com".
|