https://github.com/tcatche/hexo-filter-link-post
Transfer relative post link in markdown file to post link. 将文件里的通过相对路径引用的 markdown 文件转为对应的文章的链接
https://github.com/tcatche/hexo-filter-link-post
hexo hexo-filter hexo-plugin
Last synced: 5 months ago
JSON representation
Transfer relative post link in markdown file to post link. 将文件里的通过相对路径引用的 markdown 文件转为对应的文章的链接
- Host: GitHub
- URL: https://github.com/tcatche/hexo-filter-link-post
- Owner: tcatche
- License: mit
- Created: 2021-08-05T09:37:48.000Z (almost 5 years ago)
- Default Branch: main
- Last Pushed: 2024-11-25T10:18:15.000Z (over 1 year ago)
- Last Synced: 2025-08-09T07:49:25.526Z (11 months ago)
- Topics: hexo, hexo-filter, hexo-plugin
- Language: JavaScript
- Homepage:
- Size: 4.88 KB
- Stars: 7
- Watchers: 1
- Forks: 4
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# hexo-filter-link-post
Transfer relative post link in markdown file to post link.
将文件里的通过相对路径引用的 markdown 文件转为对应的文章的链接
## example
```
- _post
|- foo.md
|- bar.md
```
In foo.md, there is a reference bar.md: `[Referrence: bar](./bar.md)`.
After hexo render, the reference in html file is:
```html
Referrence: bar
```
But, the link is an unreachable link.
---
With this plugin, the html will be transfered as
```html
Referrence: bar
```
Now the link is reachable.
And After `1.0.1`, The link with anchor(`#title`) also support:
```
// before
`[Referrence: bar](./bar.md#title)`
// after
Referrence: bar
```
## install
```
npm install hexo-filter-link-post --save
```
## Related hexo plugins
- [hexo-generator-issues](https://github.com/tcatche/hexo-generator-issues): publish your hexo posts to github issues. 将个人文章发布到 github 的指定仓库下,每篇文章作为一个 issue。
- [hexo-generator-readme-file](https://github.com/tcatche/hexo-generator-readme-file): generate a `README.md` file contains all of blog posts link. 为你的文章生成一个 `README.md` 文件,里面包含了所有的文章链接。
- [hexo-filter-link-post](https://github.com/tcatche/hexo-filter-link-post): Transfer relative post link in markdown file to post link. 将文件里的通过相对路径引用的 markdown 文件转为对应的文章的链接。
## License
[MIT](./LICENSE)