Convert issue link to hexo permalink
npm install hexo-filter-github-issue-linkA plugin to make convenient for convert github issues link to hexo permalink in markdown style
cd to hexo root
```
npm install hexo-filter-github-issue-link --save
Hexo will detect automatically
at the head of your post.Example
Say you have the
issues1.md`
---
title: example-title1
issue_link: https://github.com///issues/1
---
bla bla bla
`And here is content of
issues2.md`
---
title: example-title2
issue_link: https://github.com///issues/2
---
bla bla blabla bla bla
`After process of
hexo-filter-github-issue-link and before renderissues2.md will be transformed as:`
bla bla blabla bla bla
`This is a real url which capturing during
before_post_render` eventOriginal code is from zhenyong/hexo-filter-file-link