Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

modules table removes outdated entries #5666

Merged
merged 2 commits into from
Oct 21, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 10 additions & 10 deletions dev-docs/modules/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@ sidebarType: 1

The core of Prebid.js contains only the foundational code needed for header bidding. Any functionality that could be considered an add-on is part of a module. These are the major categories:

* [Bidder adapters](/dev-docs/bidders.html)
* [Analytics adapters](/overview/analytics.html)
* Any other extensible functionality - documented on this page
- [Bidder adapters](/dev-docs/bidders.html)
- [Analytics adapters](/overview/analytics.html)
- Any other extensible functionality - documented on this page

* TOC
- TOC
{:toc}

{% assign module_pages = site.pages | where: "page_type", "module" %}
Expand Down Expand Up @@ -57,7 +57,7 @@ than others. See [the realTimeData setConfig](/dev-docs/publisher-api-reference/
</tr>
</thead>
<tbody>
{% for page in module_pages %}{% if page.recommended == true or page.vendor_specific == true %}{% continue %}{% endif %}
{% for page in module_pages %}{% if page.recommended == true or page.vendor_specific == true or page.enable_download == false %}{% continue %}{% endif %}
<tr>
<td><a href="{{page.url}}"><strong>{{page.display_name}}</strong></a></td>
<td>{{page.description}}</td>
Expand All @@ -79,7 +79,7 @@ These modules may require accounts with a service provider.
</tr>
</thead>
<tbody>
{% for page in module_pages %}{% if page.recommended == true %}{% continue %}{% endif %}{% if page.vendor_specific == true %}
{% for page in module_pages %}{% if page.recommended == true or page.enable_download == false %}{% continue %}{% endif %}{% if page.vendor_specific == true %}
<tr>
<td><a href="{{page.url}}"><strong>{{page.display_name}}</strong></a></td>
<td>{{page.description}}</td>
Expand All @@ -91,7 +91,7 @@ These modules may require accounts with a service provider.

## Further Reading

* [Source code of all modules](https://github.com/prebid/Prebid.js/tree/master/modules)
* [How to add a Bid Adapter](/dev-docs/bidder-adaptor.html)
* [How to add an Analytics Adapter](/dev-docs/integrate-with-the-prebid-analytics-api.html)
* [How to add a Real Time Data Submodule](/dev-docs/add-rtd-submodule.html)
- [Source code of all modules](https://github.com/prebid/Prebid.js/tree/master/modules)
- [How to add a Bid Adapter](/dev-docs/bidder-adaptor.html)
- [How to add an Analytics Adapter](/dev-docs/integrate-with-the-prebid-analytics-api.html)
- [How to add a Real Time Data Submodule](/dev-docs/add-rtd-submodule.html)