Created
June 10, 2020 13:40
-
-
Save MadaraUchiha/a486bd8f93b0fc6df1bc97d9b8fca045 to your computer and use it in GitHub Desktop.
Add mentions to markdown in GitHub
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name Linkify Markdown Mentions - github.com | |
// @namespace Violentmonkey Scripts | |
// @match https://github.com/* | |
// @grant none | |
// @version 1.0 | |
// @author Madara Uchiha | |
// @description 6/10/2020, 4:29:55 PM | |
// ==/UserScript== | |
window.addEventListener('load', () => { | |
for (const el of document.querySelectorAll('.markdown-body')) { | |
el.innerHTML = el.innerHTML | |
.replace(/@(\w+)/g, (full, name) => | |
`<a class="user-mention" data-hovercard-type="user" data-hovercard-url="/users/${name}/hovercard" href="/${name}">${full}</a>`); | |
} | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment