hexo 上使用网易云音乐插件,hexo-tag-netease-music 项目 README.md 翻译。
安装
To install, run the following command in the root directory of hexo:
1
| npm install hexo-tag-netease-music --save
|
在共有配置文件_config.yml 里添加插件:
1 2
| plugins: - hexo-tag-netease-music
|
大小
iframe 插件大小
1 2 3
| width range: [260, 510]
height range:[190, 500]
|
flash 插件大小
1 2 3
| small: {width:278, height: 32}
medium: {width:320, height: 66}
|
使用
在博客文档中插入以下代码:
1
| {% nemusic $musicID $widget(flash|iframe) $auto(0|1) ([JSONsize]|(small|medium)) %}
|
1
| {% nemusic 251613 flash 0 'medium' %}
|
Output
1
| <embed src="http://music.163.com/style/swf/widget.swf?sid=251613&type=2&auto=0&width=320&height=66" width="340" height="86" allowNetworking="all"></embed>
|
1
| {% nemusic 251613 iframe 0 '{"width":320, "height":66}' %}
|
Output:
1
| <iframe frameborder="no" border="0" marginwidth="0" marginheight="0" width=320 height=86 src="http://music.163.com/outchain/player?type=2&id=251613&auto=0&height=66"></iframe>
|