We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 490e06f commit 9c9e510Copy full SHA for 9c9e510
modulemanager
@@ -347,6 +347,14 @@ for my $mod (sort keys %todo) {
347
for my $tag (get_directives("$RealDir/src/modules/$mod.cpp", 'ModConfig', 0)) {
348
say " $tag" if $tag;
349
}
350
+
351
+ my @links = get_directives("$RealDir/src/modules/$mod.cpp", 'ModLink', 0);
352
+ if (@links) {
353
+ say "You can find out more information about this module at:";
354
+ for my $link (@links) {
355
+ say " * $link" if $link;
356
+ }
357
358
} else {
359
printf "\nHTTP %s: %s\n", $response->code, $response->message;
360
0 commit comments