docute-prefix-link
v0.1.0
Published
Absolutify relative links in Docute docs.
Downloads
2
Readme
docute-prefix-link
Install
<script src="https://unpkg.com/docute-relative-link"></script>
Usage
docute.init({
plugins: [
docutePrefixLink('http:/my-prefix.com/path')
]
})
Then it will convert relative link in markdown to absolute link:
[foo](./foo)
[foo](foo)
[foo](/foo)
With docutePrefixLink('http://example.com')
you got:
<a href="http://example.com" target="_blank">foo</a>
<a href="http://example.com" target="_blank">foo</a>
<a href="http://example.com" target="_blank">foo</a>
Only links that are not started with https://
will be prefixed.
Contributing
- Fork it!
- Create your feature branch:
git checkout -b my-new-feature
- Commit your changes:
git commit -am 'Add some feature'
- Push to the branch:
git push origin my-new-feature
- Submit a pull request :D
Author
docute-prefix-link © egoist, Released under the MIT License. Authored and maintained by egoist with help from contributors (list).
egoistian.com · GitHub @egoist · Twitter @rem_rin_rin