-
Notifications
You must be signed in to change notification settings - Fork 13
/
index.mjs
143 lines (112 loc) · 4.55 KB
/
index.mjs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
// Enclose abbreviations in <abbr> tags
//
export default function abbr_plugin (md) {
const escapeRE = md.utils.escapeRE
const arrayReplaceAt = md.utils.arrayReplaceAt
// ASCII characters in Cc, Sc, Sm, Sk categories we should terminate on;
// you can check character classes here:
// http://www.unicode.org/Public/UNIDATA/UnicodeData.txt
const OTHER_CHARS = ' \r\n$+<=>^`|~'
const UNICODE_PUNCT_RE = md.utils.lib.ucmicro.P.source
const UNICODE_SPACE_RE = md.utils.lib.ucmicro.Z.source
function abbr_def (state, startLine, endLine, silent) {
let labelEnd
let pos = state.bMarks[startLine] + state.tShift[startLine]
const max = state.eMarks[startLine]
if (pos + 2 >= max) { return false }
if (state.src.charCodeAt(pos++) !== 0x2A/* * */) { return false }
if (state.src.charCodeAt(pos++) !== 0x5B/* [ */) { return false }
const labelStart = pos
for (; pos < max; pos++) {
const ch = state.src.charCodeAt(pos)
if (ch === 0x5B /* [ */) {
return false
} else if (ch === 0x5D /* ] */) {
labelEnd = pos
break
} else if (ch === 0x5C /* \ */) {
pos++
}
}
if (labelEnd < 0 || state.src.charCodeAt(labelEnd + 1) !== 0x3A/* : */) {
return false
}
if (silent) { return true }
const label = state.src.slice(labelStart, labelEnd).replace(/\\(.)/g, '$1')
const title = state.src.slice(labelEnd + 2, max).trim()
if (label.length === 0) { return false }
if (title.length === 0) { return false }
if (!state.env.abbreviations) { state.env.abbreviations = {} }
// prepend ':' to avoid conflict with Object.prototype members
if (typeof state.env.abbreviations[':' + label] === 'undefined') {
state.env.abbreviations[':' + label] = title
}
state.line = startLine + 1
return true
}
function abbr_replace (state) {
const blockTokens = state.tokens
if (!state.env.abbreviations) { return }
const regSimple = new RegExp('(?:' +
Object.keys(state.env.abbreviations).map(function (x) {
return x.substr(1)
}).sort(function (a, b) {
return b.length - a.length
}).map(escapeRE).join('|') +
')')
const regText = '(^|' + UNICODE_PUNCT_RE + '|' + UNICODE_SPACE_RE +
'|[' + OTHER_CHARS.split('').map(escapeRE).join('') + '])' +
'(' + Object.keys(state.env.abbreviations).map(function (x) {
return x.substr(1)
}).sort(function (a, b) {
return b.length - a.length
}).map(escapeRE).join('|') + ')' +
'($|' + UNICODE_PUNCT_RE + '|' + UNICODE_SPACE_RE +
'|[' + OTHER_CHARS.split('').map(escapeRE).join('') + '])'
const reg = new RegExp(regText, 'g')
for (let j = 0, l = blockTokens.length; j < l; j++) {
if (blockTokens[j].type !== 'inline') { continue }
let tokens = blockTokens[j].children
// We scan from the end, to keep position when new tags added.
for (let i = tokens.length - 1; i >= 0; i--) {
const currentToken = tokens[i]
if (currentToken.type !== 'text') { continue }
let pos = 0
const text = currentToken.content
reg.lastIndex = 0
const nodes = []
// fast regexp run to determine whether there are any abbreviated words
// in the current token
if (!regSimple.test(text)) { continue }
let m
while ((m = reg.exec(text))) {
if (m.index > 0 || m[1].length > 0) {
const token = new state.Token('text', '', 0)
token.content = text.slice(pos, m.index + m[1].length)
nodes.push(token)
}
const token_o = new state.Token('abbr_open', 'abbr', 1)
token_o.attrs = [['title', state.env.abbreviations[':' + m[2]]]]
nodes.push(token_o)
const token_t = new state.Token('text', '', 0)
token_t.content = m[2]
nodes.push(token_t)
const token_c = new state.Token('abbr_close', 'abbr', -1)
nodes.push(token_c)
reg.lastIndex -= m[3].length
pos = reg.lastIndex
}
if (!nodes.length) { continue }
if (pos < text.length) {
const token = new state.Token('text', '', 0)
token.content = text.slice(pos)
nodes.push(token)
}
// replace current node
blockTokens[j].children = tokens = arrayReplaceAt(tokens, i, nodes)
}
}
}
md.block.ruler.before('reference', 'abbr_def', abbr_def, { alt: ['paragraph', 'reference'] })
md.core.ruler.after('linkify', 'abbr_replace', abbr_replace)
};