We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ec90662 commit 2751108Copy full SHA for 2751108
build/src/php/FileGenerator/Application/ApiMarkdownGenerator.php
@@ -24,6 +24,9 @@ public function generate(): array
24
foreach ($groupedPhelFns as $fn) {
25
$result[] = "## `{$fn->fnName()}`";
26
$result[] = $fn->doc();
27
+ if ($fn->url() !== '') {
28
+ $result[] = sprintf('Read more [here](%s).', $fn->url());
29
+ }
30
}
31
32
return $result;
0 commit comments