* Remove pinning of eslint-plugin-markdown An issue affecting Node.js source has been fixed in eslint-plugin-markdown so we don't need to pin it to beta-4 anymore. Refs: https://github.com/eslint/eslint-plugin-markdown/issues/69 * Update eslint-plugin-markdown up to 1.0.0-beta.7 * Fix docs for eslint-plugin-markdown@1.0.0-beta.7 PR-URL: https://github.com/nodejs/node/pull/14047 Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Yuta Hiroto <hello@about-hiroppy.com> Reviewed-By: Refael Ackermann <refack@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
67 lines
1.2 KiB
JavaScript
67 lines
1.2 KiB
JavaScript
/**
|
|
* @author Titus Wormer
|
|
* @copyright 2015 Titus Wormer
|
|
* @license MIT
|
|
* @module remark:parse:tokenize:text
|
|
* @fileoverview Tokenise text.
|
|
*/
|
|
|
|
'use strict';
|
|
|
|
module.exports = text;
|
|
|
|
/* Tokenise text. */
|
|
function text(eat, value, silent) {
|
|
var self = this;
|
|
var methods;
|
|
var tokenizers;
|
|
var index;
|
|
var length;
|
|
var subvalue;
|
|
var position;
|
|
var tokenizer;
|
|
var name;
|
|
var min;
|
|
var now;
|
|
|
|
/* istanbul ignore if - never used (yet) */
|
|
if (silent) {
|
|
return true;
|
|
}
|
|
|
|
methods = self.inlineMethods;
|
|
length = methods.length;
|
|
tokenizers = self.inlineTokenizers;
|
|
index = -1;
|
|
min = value.length;
|
|
|
|
while (++index < length) {
|
|
name = methods[index];
|
|
|
|
if (name === 'text' || !tokenizers[name]) {
|
|
continue;
|
|
}
|
|
|
|
tokenizer = tokenizers[name].locator;
|
|
|
|
if (!tokenizer) {
|
|
eat.file.fail('Missing locator: `' + name + '`');
|
|
}
|
|
|
|
position = tokenizer.call(self, value, 1);
|
|
|
|
if (position !== -1 && position < min) {
|
|
min = position;
|
|
}
|
|
}
|
|
|
|
subvalue = value.slice(0, min);
|
|
now = eat.now();
|
|
|
|
self.decode(subvalue, now, function (content, position, source) {
|
|
eat(source || content)({
|
|
type: 'text',
|
|
value: content
|
|
});
|
|
});
|
|
}
|