Home
last modified time | relevance | path

Searched refs:specLink (Results 1 – 1 of 1) sorted by relevance

/dokuwiki/_test/tests/Parsing/Markdown/
H A DSpecCompatRenderer.php94 $this->doc .= $this->specLink($id, $name);
99 $this->doc .= $this->specLink($url, $name);
106 $this->doc .= $this->specLink($match, $name);
111 $this->doc .= $this->specLink('mailto:' . $address, $name ?? $address);
116 $this->doc .= $this->specLink('#' . $hash, $name ?? $hash);
121 $this->doc .= $this->specLink($url, $name);
270 private function specLink($href, $label): string function in dokuwiki\\test\\Parsing\\Markdown\\SpecCompatRenderer