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 3b920f8 commit bc456d6Copy full SHA for bc456d6
src/Web/Documentation/DocumentationIndexer.php
@@ -48,6 +48,10 @@ public function __invoke(Version $version): ImmutableArray
48
$title = get_by_key($markdown->getFrontMatter(), 'title');
49
$keywords = get_by_key($markdown->getFrontMatter(), 'keywords');
50
51
+ if (get_by_key($markdown->getFrontMatter(), 'hidden') === true) {
52
+ return [];
53
+ }
54
+
55
$main = new Command(
56
type: Type::URI,
57
title: $title,
0 commit comments