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 a5e8623 commit f05e44bCopy full SHA for f05e44b
src/SourceBrowser.Generator/Transformers/SearchIndexTransformer.cs
@@ -23,7 +23,7 @@ public SearchIndexTransformer(string username, string repository)
23
protected override void VisitDocument(DocumentModel documentModel)
24
{
25
var documentId = Path.Combine(_username, _repository, documentModel.RelativePath);
26
- var declarations = documentModel.Tokens.Where(n => n.IsDeclaration);
+ var declarations = documentModel.Tokens.Where(n => n.IsDeclaration && n.IsSearchable);
27
28
foreach(var declaration in declarations)
29
0 commit comments