diff options
| author | Bradley Lewis <22850972+BradLewis@users.noreply.github.com> | 2025-08-16 17:09:45 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-08-16 17:09:45 -0400 |
| commit | a89290006f45ff0caf9ea767ee476508d76f7398 (patch) | |
| tree | c76e504af3816c6bb3c062c6cab6ba5287923766 /src | |
| parent | 8d2502f29cad2308ba5d2ee17356d75eb4b330d0 (diff) | |
| parent | ebc529d9135e790597ce3ddb384f2c3678267025 (diff) | |
Merge pull request #886 from BradLewis/feat/add-doc-links-vendor-base
Diffstat (limited to 'src')
| -rw-r--r-- | src/server/document_links.odin | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/server/document_links.odin b/src/server/document_links.odin index 5543dd2..4e5201f 100644 --- a/src/server/document_links.odin +++ b/src/server/document_links.odin @@ -31,7 +31,7 @@ get_document_links :: proc(document: ^Document) -> ([]DocumentLink, bool) { continue } - if e[0] != "core" { + if e[0] != "core" && e[0] != "vendor" && e[0] != "base" { continue } |