@fedikit/remark-webfinger-mentions
v0.0.1
Published
Remark plugin to replace acct mentions with links
Downloads
4
Maintainers
Readme
@fedikit/remark-webfinger-mentions
Remark plugin to replace acct mentions with links
Use
import { remark } from 'remark'
import { remarkWebfingerMentions } from '@fedikit/rehype-custom-emoji'
const file = await remark()
.use(remarkWebfingerMentions)
.process('Hello, @[email protected]!')
// Hello, [@[email protected]](https://mozilla.social/@mozilla)!\n
console.log(String(file))