|
|
@ -34,22 +34,32 @@ function replaceFn(match, name) { |
|
|
|
} |
|
|
|
|
|
|
|
function replace_scoped(inlineTokens) { |
|
|
|
var i, token; |
|
|
|
var i, token, inside_autolink = 0; |
|
|
|
|
|
|
|
for (i = inlineTokens.length - 1; i >= 0; i--) { |
|
|
|
token = inlineTokens[i]; |
|
|
|
if (token.type === 'text') { |
|
|
|
|
|
|
|
if (token.type === 'text' && !inside_autolink) { |
|
|
|
token.content = token.content.replace(SCOPED_ABBR_RE, replaceFn); |
|
|
|
} |
|
|
|
|
|
|
|
if (token.type === 'link_open' && token.info === 'auto') { |
|
|
|
inside_autolink--; |
|
|
|
} |
|
|
|
|
|
|
|
if (token.type === 'link_close' && token.info === 'auto') { |
|
|
|
inside_autolink++; |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
function replace_rare(inlineTokens) { |
|
|
|
var i, token; |
|
|
|
var i, token, inside_autolink = 0; |
|
|
|
|
|
|
|
for (i = inlineTokens.length - 1; i >= 0; i--) { |
|
|
|
token = inlineTokens[i]; |
|
|
|
if (token.type === 'text') { |
|
|
|
|
|
|
|
if (token.type === 'text' && !inside_autolink) { |
|
|
|
if (RARE_RE.test(token.content)) { |
|
|
|
token.content = token.content |
|
|
|
.replace(/\+-/g, '±') |
|
|
@ -64,6 +74,14 @@ function replace_rare(inlineTokens) { |
|
|
|
.replace(/(^|[^-\s])--([^-\s]|$)/mg, '$1\u2013$2'); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
if (token.type === 'link_open' && token.info === 'auto') { |
|
|
|
inside_autolink--; |
|
|
|
} |
|
|
|
|
|
|
|
if (token.type === 'link_close' && token.info === 'auto') { |
|
|
|
inside_autolink++; |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|