UNPKG
@timaschew/markdown-it-vuepress-code-snippet-enhanced
Version:
latest (2.0.1)
2.0.1
2.0.0
1.0.1
Easily import code snippets for Vuepress
@timaschew/markdown-it-vuepress-code-snippet-enhanced
/
example.js
15 lines
(11 loc)
•
317 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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
; } }