Back to API Reference
Class

RawUrlParseRule

sealed
Inherits:ParseRule

Auto-detects URLs in plain text and converts them to clickable links.

Remarks

Recognizes schemes: http://, https://, ftp://, ftps://, file://, mailto:, tel:, and www. prefixes. Uses negative priority (-100) to run after explicit markup rules (tags, Markdown), so URLs inside other markup are not detected.
public int Priority{ get }

Low priority ensures this runs after explicit markup rules.

public string MarkupTriggers{ get }

Style-only matches — the URL text stays on screen, nothing is consumed.

public string TypingTriggers{ get }
public string ScanTriggers{ get }

Scheme/prefix first letters (http/https, ftp/ftps/file, mailto, tel, www).

public override int TryMatch()

See Also