需求
希望在博客中能预览pdf,hexo已有插件支持pdf预览,非常方便,只需安装插件和添加链接即可。 # 实现 安装插件
1
npm install --save hexo-pdf
使用
在arkdown文件中添加pdf
本地资源 1
{% pdf test.pdf %}
在线资源 1
2<center> **监督学习**</center> # 居中
{% pdf https://raw.githubusercontent.com/afshinea/stanford-cs-229-machine-learning/4d5ac4e620be8b63b6f889ecff667b7ebac008a8/zh/cheatsheet-supervised-learning.pdf %}
问题处理
github上pdf的显示
要想成功显示pdf,必须正确配置路径,可以用F12来查看。若想显示github上的pdf,用github.com的域名是不行的,应该是raw.githubusercontent.com的域名,可以通过F12来查看。