From 749e776d6fb218de9022ac9247fcffc4fa415b6d Mon Sep 17 00:00:00 2001 From: rinsuki <428rinsuki+git@gmail.com> Date: Sat, 16 Mar 2019 15:14:04 +0900 Subject: [PATCH] change readme example (#126) * change readme example * fix indent * fix indent 2 * fix url --- README.md | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/README.md b/README.md index f9f476ad..5de45199 100644 --- a/README.md +++ b/README.md @@ -68,22 +68,22 @@ A Promise of an Object that contains properties below: ``` javascript import summaly from 'summaly'; -const summary = await summaly('http://elephant.2chblog.jp/archives/52025138.html'); +const summary = await summaly('https://www.youtube.com/watch?v=NMIEAhH_fTU'); console.log(summary); // will be ... ↓ /* { - title: 'モバP「ありすと言えばお漏らし。お漏らしと言えばありす」', - 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「だが俺の主張も聞いてほしい! お漏らしさせるならありすが一番だ!」 日菜子「むふふ……いきなりそんなことを大声で', - thumbnail: 'http://livedoor.blogimg.jp/tmg24news/imgs/8/d/8df6e1a0-s.jpg', + title: '【楽曲試聴】「Stage Bye Stage」(歌:島村卯月、渋谷凛、本田未央)', + icon: 'https://s.ytimg.com/yts/img/favicon-vfl8qSV2F.ico', + description: 'http://columbia.jp/idolmaster/ 2018年7月18日発売予定 THE IDOLM@STER CINDERELLA GIRLS CG STAR LIVE Stage Bye Stage 歌:島村卯月、渋谷凛、本田未央 COCC-17495[CD1枚組] ¥1,200+税 収録内容 Tr...', + thumbnail: 'https://i.ytimg.com/vi/NMIEAhH_fTU/maxresdefault.jpg', player: { - url: null, - width: null, - height: null - } - sitename: 'エレファント速報:SSまとめブログ', - url: 'http://elephant.2chblog.jp/archives/52025138.html' + url: 'https://www.youtube.com/embed/NMIEAhH_fTU', + width: 1280, + height: 720 + }, + sitename: 'YouTube', + url: 'https://www.youtube.com/watch?v=NMIEAhH_fTU' } */ ```