mirror of
https://github.com/misskey-dev/summaly.git
synced 2025-05-10 16:17:23 +09:00
Update README.md
This commit is contained in:
parent
1ac5415ac0
commit
500b8cb6a0
22
README.md
22
README.md
@ -24,12 +24,14 @@ summaly(url[, opts])
|
|||||||
```
|
```
|
||||||
|
|
||||||
### Options
|
### Options
|
||||||
|
|
||||||
| Property | Type | Description | Default |
|
| Property | Type | Description | Default |
|
||||||
| :------------------ | :--------------------- | :----------------------- | :------ |
|
| :------------------ | :--------------------- | :----------------------- | :------ |
|
||||||
| **followRedirects** | *boolean* | Whether follow redirects | `true` |
|
| **followRedirects** | *boolean* | Whether follow redirects | `true` |
|
||||||
| **plugins** | *plugin[]* (see below) | Custom plugins | `null` |
|
| **plugins** | *plugin[]* (see below) | Custom plugins | `null` |
|
||||||
|
|
||||||
#### Plugin
|
#### Plugin
|
||||||
|
|
||||||
``` typescript
|
``` typescript
|
||||||
interface IPlugin {
|
interface IPlugin {
|
||||||
test: (url: URL.Url) => boolean;
|
test: (url: URL.Url) => boolean;
|
||||||
@ -38,19 +40,31 @@ interface IPlugin {
|
|||||||
```
|
```
|
||||||
|
|
||||||
### Returns
|
### Returns
|
||||||
|
|
||||||
A Promise of an Object that contains properties below:
|
A Promise of an Object that contains properties below:
|
||||||
|
|
||||||
|
#### Root
|
||||||
|
|
||||||
| Property | Type | Description |
|
| Property | Type | Description |
|
||||||
| :-------------- | :------- | :--------------------------------------- |
|
| :-------------- | :------- | :--------------------------------------- |
|
||||||
| **description** | *string* | The description of the web page |
|
| **description** | *string* | The description of the web page |
|
||||||
| **icon** | *string* | The url of the icon of the web page |
|
| **icon** | *string* | The url of the icon of the web page |
|
||||||
| **sitename** | *string* | The name of the web site |
|
| **sitename** | *string* | The name of the web site |
|
||||||
| **thumbnail** | *string* | The url of the thumbnail of the web page |
|
| **thumbnail** | *string* | The url of the thumbnail of the web page |
|
||||||
| **player** | *string* | The url of the player of the web page |
|
| **player** | *Player* | The player of the web page |
|
||||||
| **title** | *string* | The title of the web page |
|
| **title** | *string* | The title of the web page |
|
||||||
| **url** | *string* | The url of the web page |
|
| **url** | *string* | The url of the web page |
|
||||||
|
|
||||||
|
#### Player
|
||||||
|
|
||||||
|
| Property | Type | Description |
|
||||||
|
| :-------------- | :------- | :--------------------------------------- |
|
||||||
|
| **url** | *string* | The url of the player |
|
||||||
|
| **width** | *number* | The width of the player |
|
||||||
|
| **height** | *number* | The height of the player |
|
||||||
|
|
||||||
### Example
|
### Example
|
||||||
|
|
||||||
``` javascript
|
``` javascript
|
||||||
import summaly from 'summaly';
|
import summaly from 'summaly';
|
||||||
|
|
||||||
@ -63,7 +77,11 @@ console.log(summary); // will be ... ↓
|
|||||||
icon: 'http://livedoor.blogimg.jp/tmg24news/imgs/9/5/favicon.ico',
|
icon: 'http://livedoor.blogimg.jp/tmg24news/imgs/9/5/favicon.ico',
|
||||||
description: '1:以下、名無しにかわりましてVIPがお送りします:2013/03/30(土) 14:57:29.09 ID:An34eOmY0モバP「反論が あるやつもいるかもしれない」 モバP「だが俺の主張も聞いてほしい! お漏らしさせるならありすが一番だ!」 日菜子「むふふ……いきなりそんなことを大声で',
|
description: '1:以下、名無しにかわりましてVIPがお送りします:2013/03/30(土) 14:57:29.09 ID:An34eOmY0モバP「反論が あるやつもいるかもしれない」 モバP「だが俺の主張も聞いてほしい! お漏らしさせるならありすが一番だ!」 日菜子「むふふ……いきなりそんなことを大声で',
|
||||||
thumbnail: 'http://livedoor.blogimg.jp/tmg24news/imgs/8/d/8df6e1a0-s.jpg',
|
thumbnail: 'http://livedoor.blogimg.jp/tmg24news/imgs/8/d/8df6e1a0-s.jpg',
|
||||||
player: null
|
player: {
|
||||||
|
url: null,
|
||||||
|
width: null,
|
||||||
|
height: null
|
||||||
|
}
|
||||||
sitename: 'エレファント速報:SSまとめブログ',
|
sitename: 'エレファント速報:SSまとめブログ',
|
||||||
url: 'http://elephant.2chblog.jp/archives/52025138.html'
|
url: 'http://elephant.2chblog.jp/archives/52025138.html'
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user