* 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>
34 lines
607 B
JavaScript
34 lines
607 B
JavaScript
/**
|
|
* @author Titus Wormer
|
|
* @copyright 2015 Titus Wormer
|
|
* @license MIT
|
|
* @module remark:parse:locate:url
|
|
* @fileoverview Locate a URL.
|
|
*/
|
|
|
|
'use strict';
|
|
|
|
module.exports = locate;
|
|
|
|
var PROTOCOLS = ['https://', 'http://', 'mailto:'];
|
|
|
|
function locate(value, fromIndex) {
|
|
var length = PROTOCOLS.length;
|
|
var index = -1;
|
|
var min = -1;
|
|
var position;
|
|
|
|
if (!this.options.gfm) {
|
|
return -1;
|
|
}
|
|
|
|
while (++index < length) {
|
|
position = value.indexOf(PROTOCOLS[index], fromIndex);
|
|
|
|
if (position !== -1 && (position < min || min === -1)) {
|
|
min = position;
|
|
}
|
|
}
|
|
|
|
return min;
|
|
}
|