* 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>
51 lines
963 B
JavaScript
51 lines
963 B
JavaScript
/**
|
|
* @author Titus Wormer
|
|
* @copyright 2015 Titus Wormer
|
|
* @license MIT
|
|
* @module remark:parse:util:get-indentation
|
|
* @fileoverview Get indentation.
|
|
*/
|
|
|
|
'use strict';
|
|
|
|
module.exports = interrupt;
|
|
|
|
function interrupt(interruptors, tokenizers, ctx, params) {
|
|
var bools = ['pedantic', 'commonmark'];
|
|
var count = bools.length;
|
|
var length = interruptors.length;
|
|
var index = -1;
|
|
var interruptor;
|
|
var config;
|
|
var fn;
|
|
var offset;
|
|
var bool;
|
|
var ignore;
|
|
|
|
while (++index < length) {
|
|
interruptor = interruptors[index];
|
|
config = interruptor[1] || {};
|
|
fn = interruptor[0];
|
|
offset = -1;
|
|
ignore = false;
|
|
|
|
while (++offset < count) {
|
|
bool = bools[offset];
|
|
|
|
if (config[bool] !== undefined && config[bool] !== ctx.options[bool]) {
|
|
ignore = true;
|
|
break;
|
|
}
|
|
}
|
|
|
|
if (ignore) {
|
|
continue;
|
|
}
|
|
|
|
if (tokenizers[fn].apply(ctx, params)) {
|
|
return true;
|
|
}
|
|
}
|
|
|
|
return false;
|
|
}
|