A plugin that can be used to embed GitHub repo description.
npm i -S embed-js embed-plugin-github
https://unpkg.com/embed-plugin-github
Embeds repository data in the website. Supports repo URLs. Usage is simple.
import EmbedJS from 'embed-js'
import github from 'embed-plugin-github'
const x = new EmbedJS({
input: document.getElementById('element'),
plugins: [
github({
regex: /githubRepoRegex/gi, // in case you want to define a custom regex
template(args) {
// optional template
}
})
]
})
When you click on the link URL, it redirects you to the repo URL.
MIT @ Ritesh Kumar