Skip to content

Commit

Permalink
Doc for greebids adapter
Browse files Browse the repository at this point in the history
  • Loading branch information
jeremy-greenbids committed Nov 27, 2024
1 parent 254911c commit 37fe3cc
Showing 1 changed file with 34 additions and 0 deletions.
34 changes: 34 additions & 0 deletions dev-docs/bidders/greenbids.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
## Type of change

Check failure on line 1 in dev-docs/bidders/greenbids.md

View workflow job for this annotation

GitHub Actions / run markdownlint

First line in a file should be a top-level heading

dev-docs/bidders/greenbids.md:1 MD041/first-line-heading/first-line-h1 First line in a file should be a top-level heading [Context: "## Type of change"] https://github.com/DavidAnson/markdownlint/blob/v0.34.0/doc/md041.md
New bidder adapter


Check failure on line 4 in dev-docs/bidders/greenbids.md

View workflow job for this annotation

GitHub Actions / run markdownlint

Multiple consecutive blank lines

dev-docs/bidders/greenbids.md:4 MD012/no-multiple-blanks Multiple consecutive blank lines [Expected: 1; Actual: 2] https://github.com/DavidAnson/markdownlint/blob/v0.34.0/doc/md012.md
**Module Name**: Greenbids Bidder Adapter
**Module Type**: Bidder Adapter
**Maintainer**: [email protected]

Check failure on line 7 in dev-docs/bidders/greenbids.md

View workflow job for this annotation

GitHub Actions / run markdownlint

Bare URL used

dev-docs/bidders/greenbids.md:7:18 MD034/no-bare-urls Bare URL used [Context: "[email protected]"] https://github.com/DavidAnson/markdownlint/blob/v0.34.0/doc/md034.md

# Description

Use `greenbids` as bidder.

## AdUnits configuration example
```

Check failure on line 14 in dev-docs/bidders/greenbids.md

View workflow job for this annotation

GitHub Actions / run markdownlint

Fenced code blocks should be surrounded by blank lines

dev-docs/bidders/greenbids.md:14 MD031/blanks-around-fences Fenced code blocks should be surrounded by blank lines [Context: "```"] https://github.com/DavidAnson/markdownlint/blob/v0.34.0/doc/md031.md

Check failure on line 14 in dev-docs/bidders/greenbids.md

View workflow job for this annotation

GitHub Actions / run markdownlint

Fenced code blocks should have a language specified

dev-docs/bidders/greenbids.md:14 MD040/fenced-code-language Fenced code blocks should have a language specified [Context: "```"] https://github.com/DavidAnson/markdownlint/blob/v0.34.0/doc/md040.md
var adUnits = [{
code: 'your-slot_1-div', //use exactly the same code as your slot div id.
sizes: [[300, 250]],
bids: [{
bidder: 'greenbids',
params: {
gbPlacementId: 12345,
}
}]
},{
code: 'your-slot_2-div', //use exactly the same code as your slot div id.
sizes: [[600, 800]],
bids: [{
bidder: 'greenbids',
params: {
placementId: 12345,
}
}]
}];
```

Check failure on line 34 in dev-docs/bidders/greenbids.md

View workflow job for this annotation

GitHub Actions / run markdownlint

Files should end with a single newline character

dev-docs/bidders/greenbids.md:34:3 MD047/single-trailing-newline Files should end with a single newline character https://github.com/DavidAnson/markdownlint/blob/v0.34.0/doc/md047.md

0 comments on commit 37fe3cc

Please sign in to comment.