UNPKG

@timaschew/markdown-it-vuepress-code-snippet-enhanced

Version:

Easily import code snippets for Vuepress

15 lines (11 loc) 317 B
module.exports = function autolink(state, silent) { var tail, linkMatch, emailMatch, url, fullUrl, token, pos = state.pos; if (state.src.charCodeAt(pos) !== 0x3C /* < */ ) { return false; } tail = state.src.slice(pos); if (tail.indexOf('>') < 0) { return false; } }