text = $text; $this->anchor = $anchor; } /** * Renders the link item. * * @return string */ public function render(): string { return "[$this->text]($this->anchor)"; } /** * Escapes the markdown content. * * @param param Markdown_Escaper $markdown_escaper The markdown escaper. * * @return void */ public function escape_markdown( Markdown_Escaper $markdown_escaper ): void { $this->text = $markdown_escaper->escape_markdown_content( $this->text ); $this->anchor = $markdown_escaper->escape_markdown_url( $this->anchor ); } }