Skip to content

Commit

Permalink
modules table removes outdated entries (#5666)
Browse files Browse the repository at this point in the history
Co-authored-by: Muki Seiler <[email protected]>
  • Loading branch information
bretg and muuki88 authored Oct 21, 2024
1 parent 661176e commit cdcfdcd
Showing 1 changed file with 10 additions and 10 deletions.
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)

0 comments on commit cdcfdcd

Please sign in to comment.