Skip to content

Commit 687199d

Browse files
style: make README more readable
1 parent 7f589a4 commit 687199d

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

README.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,8 @@ Want to access data from the YouTube Data v3 API? Want a Node.js YouTube API wra
1212
Check out [our website](https://bbothell.me/popyt)!
1313

1414
# Examples
15-
First of all, I recommend that you check out [the documentation](https://bbothell.me/popyt/docs) for all of the methods and what they return. Here are some basic methods:
15+
## Check out [the documentation](https://bbothell.me/popyt/docs).
16+
Here are some basic methods:
1617

1718
Instantiate the object:
1819

@@ -35,7 +36,7 @@ const video = await youtube.getVideo('dQw4w9WgXcQ')
3536
console.log(video)
3637
```
3738

38-
### You can do the same thing with playlists, channels, and comments by replacing `Video` with any of them. ###
39+
You can do the same thing with playlists, channels, and comments by replacing `Video` with any of them.
3940

4041
Get a video by URL:
4142

@@ -51,7 +52,7 @@ const video = await youtube.getVideo('never gonna give you up')
5152
console.log(video)
5253
```
5354

54-
## Search videos:
55+
Search videos:
5556

5657
```js
5758
const videos = await youtube.searchVideos('never gonna give you up', 12)
@@ -60,7 +61,7 @@ console.log(videos) // array of 12 partial video objects
6061

6162
Note: This wrapper does not implement every feature of the YouTube API. With a single developer working on it, there just isn't time for everything to be implemented. Some of the objectively most-important features have been added. The limits imposed by the wrapper are not imposed by YouTube.
6263

63-
# Development
64+
# Development/Contributing
6465
## Before committing:
6566

6667
* Run TSLint.

0 commit comments

Comments
 (0)