mirror of
https://github.com/praktimarc/kst4contest.git
synced 2026-07-13 08:07:11 +02:00
Add initial 11ty website structure
This commit is contained in:
+22
@@ -0,0 +1,22 @@
|
||||
Copyright (c) 2015 Vitaly Puzrin.
|
||||
|
||||
Permission is hereby granted, free of charge, to any person
|
||||
obtaining a copy of this software and associated documentation
|
||||
files (the "Software"), to deal in the Software without
|
||||
restriction, including without limitation the rights to use,
|
||||
copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
copies of the Software, and to permit persons to whom the
|
||||
Software is furnished to do so, subject to the following
|
||||
conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be
|
||||
included in all copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
||||
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
|
||||
OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
||||
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
|
||||
HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
|
||||
WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
||||
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
|
||||
OTHER DEALINGS IN THE SOFTWARE.
|
||||
+195
@@ -0,0 +1,195 @@
|
||||
linkify-it
|
||||
==========
|
||||
|
||||
[](https://github.com/markdown-it/linkify-it/actions/workflows/ci.yml)
|
||||
[](https://www.npmjs.org/package/linkify-it)
|
||||
[](https://coveralls.io/github/markdown-it/linkify-it?branch=master)
|
||||
|
||||
> Links recognition library with FULL unicode support.
|
||||
> Focused on high quality link patterns detection in plain text.
|
||||
|
||||
__[Demo](http://markdown-it.github.io/linkify-it/)__
|
||||
|
||||
Why it's awesome:
|
||||
|
||||
- Full unicode support, _with astral characters_!
|
||||
- International domains support.
|
||||
- Allows rules extension & custom normalizers.
|
||||
|
||||
|
||||
Install
|
||||
-------
|
||||
|
||||
```bash
|
||||
npm install linkify-it --save
|
||||
```
|
||||
|
||||
Browserification is also supported.
|
||||
|
||||
|
||||
Usage examples
|
||||
--------------
|
||||
|
||||
##### Example 1
|
||||
|
||||
```js
|
||||
import linkifyit from 'linkify-it';
|
||||
const linkify = linkifyit();
|
||||
|
||||
// Reload full tlds list & add unofficial `.onion` domain.
|
||||
linkify
|
||||
.tlds(require('tlds')) // Reload with full tlds list
|
||||
.tlds('onion', true) // Add unofficial `.onion` domain
|
||||
.add('git:', 'http:') // Add `git:` protocol as "alias"
|
||||
.add('ftp:', null) // Disable `ftp:` protocol
|
||||
.set({ fuzzyIP: true }); // Enable IPs in fuzzy links (without schema)
|
||||
|
||||
console.log(linkify.test('Site github.com!')); // true
|
||||
|
||||
console.log(linkify.match('Site github.com!')); // [ {
|
||||
// schema: "",
|
||||
// index: 5,
|
||||
// lastIndex: 15,
|
||||
// raw: "github.com",
|
||||
// text: "github.com",
|
||||
// url: "http://github.com",
|
||||
// } ]
|
||||
```
|
||||
|
||||
##### Example 2. Add twitter mentions handler
|
||||
|
||||
```js
|
||||
linkify.add('@', {
|
||||
validate: function (text, pos, self) {
|
||||
const tail = text.slice(pos);
|
||||
|
||||
if (!self.re.twitter) {
|
||||
self.re.twitter = new RegExp(
|
||||
`^([a-zA-Z0-9_]){1,15}(?!_)(?=$|${self.re.src_ZPCc})`
|
||||
);
|
||||
}
|
||||
if (self.re.twitter.test(tail)) {
|
||||
// Linkifier allows punctuation chars before prefix,
|
||||
// but we additionally disable `@` ("@@mention" is invalid)
|
||||
if (pos >= 2 && tail[pos - 2] === '@') {
|
||||
return false;
|
||||
}
|
||||
return tail.match(self.re.twitter)[0].length;
|
||||
}
|
||||
return 0;
|
||||
},
|
||||
normalize: function (match) {
|
||||
match.url = `https://twitter.com/${match.url.replace(/^@/, '')}`;
|
||||
}
|
||||
});
|
||||
```
|
||||
|
||||
|
||||
API
|
||||
---
|
||||
|
||||
__[API documentation](http://markdown-it.github.io/linkify-it/doc)__
|
||||
|
||||
### new LinkifyIt(schemas, options)
|
||||
|
||||
Creates new linkifier instance with optional additional schemas.
|
||||
Can be called without `new` keyword for convenience.
|
||||
|
||||
By default understands:
|
||||
|
||||
- `http(s)://...` , `ftp://...`, `mailto:...` & `//...` links
|
||||
- "fuzzy" links and emails (google.com, foo@bar.com).
|
||||
|
||||
`schemas` is an object, where each key/value describes protocol/rule:
|
||||
|
||||
- __key__ - link prefix (usually, protocol name with `:` at the end, `skype:`
|
||||
for example). `linkify-it` makes sure that prefix is not preceded with
|
||||
alphanumeric char.
|
||||
- __value__ - rule to check tail after link prefix
|
||||
- _String_ - just alias to existing rule
|
||||
- _Object_
|
||||
- _validate_ - either a `RegExp` (start with `^`, and don't include the
|
||||
link prefix itself), or a validator function which, given arguments
|
||||
_text_, _pos_, and _self_, returns the length of a match in _text_
|
||||
starting at index _pos_. _pos_ is the index right after the link prefix.
|
||||
_self_ can be used to access the linkify object to cache data.
|
||||
- _normalize_ - optional function to normalize text & url of matched result
|
||||
(for example, for twitter mentions).
|
||||
|
||||
`options`:
|
||||
|
||||
- __fuzzyLink__ - recognize URL-s without `http(s)://` head. Default `true`.
|
||||
- __fuzzyIP__ - allow IPs in fuzzy links above. Can conflict with some texts
|
||||
like version numbers. Default `false`.
|
||||
- __fuzzyEmail__ - recognize emails without `mailto:` prefix. Default `true`.
|
||||
- __---__ - set `true` to terminate link with `---` (if it's considered as long dash).
|
||||
|
||||
|
||||
### .test(text)
|
||||
|
||||
Searches linkifiable pattern and returns `true` on success or `false` on fail.
|
||||
|
||||
|
||||
### .pretest(text)
|
||||
|
||||
Quick check if link MAY BE can exist. Can be used to optimize more expensive
|
||||
`.test()` calls. Return `false` if link can not be found, `true` - if `.test()`
|
||||
call needed to know exactly.
|
||||
|
||||
|
||||
### .testSchemaAt(text, name, offset)
|
||||
|
||||
Similar to `.test()` but checks only specific protocol tail exactly at given
|
||||
position. Returns length of found pattern (0 on fail).
|
||||
|
||||
|
||||
### .match(text)
|
||||
|
||||
Returns `Array` of found link matches or null if nothing found.
|
||||
|
||||
Each match has:
|
||||
|
||||
- __schema__ - link schema, can be empty for fuzzy links, or `//` for
|
||||
protocol-neutral links.
|
||||
- __index__ - offset of matched text
|
||||
- __lastIndex__ - index of next char after mathch end
|
||||
- __raw__ - matched text
|
||||
- __text__ - normalized text
|
||||
- __url__ - link, generated from matched text
|
||||
|
||||
|
||||
### .matchAtStart(text)
|
||||
|
||||
Checks if a match exists at the start of the string. Returns `Match`
|
||||
(see docs for `match(text)`) or null if no URL is at the start.
|
||||
Doesn't work with fuzzy links.
|
||||
|
||||
|
||||
### .tlds(list[, keepOld])
|
||||
|
||||
Load (or merge) new tlds list. Those are needed for fuzzy links (without schema)
|
||||
to avoid false positives. By default:
|
||||
|
||||
- 2-letter root zones are ok.
|
||||
- biz|com|edu|gov|net|org|pro|web|xxx|aero|asia|coop|info|museum|name|shop|рф are ok.
|
||||
- encoded (`xn--...`) root zones are ok.
|
||||
|
||||
If that's not enough, you can reload defaults with more detailed zones list.
|
||||
|
||||
### .add(key, value)
|
||||
|
||||
Add a new schema to the schemas object. As described in the constructor
|
||||
definition, `key` is a link prefix (`skype:`, for example), and `value`
|
||||
is a String to alias to another schema, or an Object with `validate` and
|
||||
optionally `normalize` definitions. To disable an existing rule, use
|
||||
`.add(key, null)`.
|
||||
|
||||
|
||||
### .set(options)
|
||||
|
||||
Override default options. Missed properties will not be changed.
|
||||
|
||||
|
||||
## License
|
||||
|
||||
[MIT](https://github.com/markdown-it/linkify-it/blob/master/LICENSE)
|
||||
+646
@@ -0,0 +1,646 @@
|
||||
import reFactory from './lib/re.mjs'
|
||||
|
||||
//
|
||||
// Helpers
|
||||
//
|
||||
|
||||
// Merge objects
|
||||
//
|
||||
function assign (obj /* from1, from2, from3, ... */) {
|
||||
const sources = Array.prototype.slice.call(arguments, 1)
|
||||
|
||||
sources.forEach(function (source) {
|
||||
if (!source) { return }
|
||||
|
||||
Object.keys(source).forEach(function (key) {
|
||||
obj[key] = source[key]
|
||||
})
|
||||
})
|
||||
|
||||
return obj
|
||||
}
|
||||
|
||||
function _class (obj) { return Object.prototype.toString.call(obj) }
|
||||
function isString (obj) { return _class(obj) === '[object String]' }
|
||||
function isObject (obj) { return _class(obj) === '[object Object]' }
|
||||
function isRegExp (obj) { return _class(obj) === '[object RegExp]' }
|
||||
function isFunction (obj) { return _class(obj) === '[object Function]' }
|
||||
|
||||
function escapeRE (str) { return str.replace(/[.?*+^$[\]\\(){}|-]/g, '\\$&') }
|
||||
|
||||
//
|
||||
|
||||
const defaultOptions = {
|
||||
fuzzyLink: true,
|
||||
fuzzyEmail: true,
|
||||
fuzzyIP: false
|
||||
}
|
||||
|
||||
function isOptionsObj (obj) {
|
||||
return Object.keys(obj || {}).reduce(function (acc, k) {
|
||||
/* eslint-disable-next-line no-prototype-builtins */
|
||||
return acc || defaultOptions.hasOwnProperty(k)
|
||||
}, false)
|
||||
}
|
||||
|
||||
const defaultSchemas = {
|
||||
'http:': {
|
||||
validate: function (text, pos, self) {
|
||||
const tail = text.slice(pos)
|
||||
|
||||
if (!self.re.http) {
|
||||
// compile lazily, because "host"-containing variables can change on tlds update.
|
||||
self.re.http = new RegExp(
|
||||
`^\\/\\/${self.re.src_auth}${self.re.src_host_port_strict}${self.re.src_path}`, 'i'
|
||||
)
|
||||
}
|
||||
if (self.re.http.test(tail)) {
|
||||
return tail.match(self.re.http)[0].length
|
||||
}
|
||||
return 0
|
||||
}
|
||||
},
|
||||
'https:': 'http:',
|
||||
'ftp:': 'http:',
|
||||
'//': {
|
||||
validate: function (text, pos, self) {
|
||||
const tail = text.slice(pos)
|
||||
|
||||
if (!self.re.no_http) {
|
||||
// compile lazily, because "host"-containing variables can change on tlds update.
|
||||
self.re.no_http = new RegExp(
|
||||
'^' +
|
||||
self.re.src_auth +
|
||||
// Don't allow single-level domains, because of false positives like '//test'
|
||||
// with code comments
|
||||
`(?:localhost|(?:(?:${self.re.src_domain})\\.)+${self.re.src_domain_root})` +
|
||||
self.re.src_port +
|
||||
self.re.src_host_terminator +
|
||||
self.re.src_path,
|
||||
|
||||
'i'
|
||||
)
|
||||
}
|
||||
|
||||
if (self.re.no_http.test(tail)) {
|
||||
// should not be `://` & `///`, that protects from errors in protocol name
|
||||
if (pos >= 3 && text[pos - 3] === ':') { return 0 }
|
||||
if (pos >= 3 && text[pos - 3] === '/') { return 0 }
|
||||
return tail.match(self.re.no_http)[0].length
|
||||
}
|
||||
return 0
|
||||
}
|
||||
},
|
||||
'mailto:': {
|
||||
validate: function (text, pos, self) {
|
||||
const tail = text.slice(pos)
|
||||
|
||||
if (!self.re.mailto) {
|
||||
self.re.mailto = new RegExp(
|
||||
`^${self.re.src_email_name}@${self.re.src_host_strict}`, 'i'
|
||||
)
|
||||
}
|
||||
if (self.re.mailto.test(tail)) {
|
||||
return tail.match(self.re.mailto)[0].length
|
||||
}
|
||||
return 0
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// RE pattern for 2-character tlds (autogenerated by ./support/tlds_2char_gen.js)
|
||||
const tlds_2ch_src_re = 'a[cdefgilmnoqrstuwxz]|b[abdefghijmnorstvwyz]|c[acdfghiklmnoruvwxyz]|d[ejkmoz]|e[cegrstu]|f[ijkmor]|g[abdefghilmnpqrstuwy]|h[kmnrtu]|i[delmnoqrst]|j[emop]|k[eghimnprwyz]|l[abcikrstuvy]|m[acdeghklmnopqrstuvwxyz]|n[acefgilopruz]|om|p[aefghklmnrstwy]|qa|r[eosuw]|s[abcdeghijklmnortuvxyz]|t[cdfghjklmnortvwz]|u[agksyz]|v[aceginu]|w[fs]|y[et]|z[amw]'
|
||||
|
||||
// DON'T try to make PRs with changes. Extend TLDs with LinkifyIt.tlds() instead
|
||||
const tlds_default = 'biz|com|edu|gov|net|org|pro|web|xxx|aero|asia|coop|info|museum|name|shop|рф'.split('|')
|
||||
|
||||
function createValidator (re) {
|
||||
return function (text, pos) {
|
||||
const tail = text.slice(pos)
|
||||
|
||||
if (re.test(tail)) {
|
||||
return tail.match(re)[0].length
|
||||
}
|
||||
return 0
|
||||
}
|
||||
}
|
||||
|
||||
function createNormalizer () {
|
||||
return function (match, self) {
|
||||
self.normalize(match)
|
||||
}
|
||||
}
|
||||
|
||||
// Schemas compiler. Build regexps.
|
||||
//
|
||||
function compile (self) {
|
||||
// Load & clone RE patterns.
|
||||
const re = self.re = reFactory(self.__opts__)
|
||||
|
||||
// Define dynamic patterns
|
||||
const tlds = self.__tlds__.slice()
|
||||
|
||||
self.onCompile()
|
||||
|
||||
if (!self.__tlds_replaced__) {
|
||||
tlds.push(tlds_2ch_src_re)
|
||||
}
|
||||
tlds.push(re.src_xn)
|
||||
|
||||
re.src_tlds = tlds.join('|')
|
||||
|
||||
function untpl (tpl) { return tpl.replace('%TLDS%', re.src_tlds) }
|
||||
|
||||
re.email_fuzzy = RegExp(untpl(re.tpl_email_fuzzy), 'i')
|
||||
re.email_fuzzy_global = RegExp(untpl(re.tpl_email_fuzzy), 'ig')
|
||||
re.link_fuzzy = RegExp(untpl(re.tpl_link_fuzzy), 'i')
|
||||
re.link_fuzzy_global = RegExp(untpl(re.tpl_link_fuzzy), 'ig')
|
||||
re.link_no_ip_fuzzy = RegExp(untpl(re.tpl_link_no_ip_fuzzy), 'i')
|
||||
re.link_no_ip_fuzzy_global = RegExp(untpl(re.tpl_link_no_ip_fuzzy), 'ig')
|
||||
re.host_fuzzy_test = RegExp(untpl(re.tpl_host_fuzzy_test), 'i')
|
||||
|
||||
//
|
||||
// Compile each schema
|
||||
//
|
||||
|
||||
const aliases = []
|
||||
|
||||
self.__compiled__ = {} // Reset compiled data
|
||||
|
||||
function schemaError (name, val) {
|
||||
throw new Error(`(LinkifyIt) Invalid schema "${name}": ${val}`)
|
||||
}
|
||||
|
||||
Object.keys(self.__schemas__).forEach(function (name) {
|
||||
const val = self.__schemas__[name]
|
||||
|
||||
// skip disabled methods
|
||||
if (val === null) { return }
|
||||
|
||||
const compiled = { validate: null, link: null }
|
||||
|
||||
self.__compiled__[name] = compiled
|
||||
|
||||
if (isObject(val)) {
|
||||
if (isRegExp(val.validate)) {
|
||||
compiled.validate = createValidator(val.validate)
|
||||
} else if (isFunction(val.validate)) {
|
||||
compiled.validate = val.validate
|
||||
} else {
|
||||
schemaError(name, val)
|
||||
}
|
||||
|
||||
if (isFunction(val.normalize)) {
|
||||
compiled.normalize = val.normalize
|
||||
} else if (!val.normalize) {
|
||||
compiled.normalize = createNormalizer()
|
||||
} else {
|
||||
schemaError(name, val)
|
||||
}
|
||||
|
||||
return
|
||||
}
|
||||
|
||||
if (isString(val)) {
|
||||
aliases.push(name)
|
||||
return
|
||||
}
|
||||
|
||||
schemaError(name, val)
|
||||
})
|
||||
|
||||
//
|
||||
// Compile postponed aliases
|
||||
//
|
||||
|
||||
aliases.forEach(function (alias) {
|
||||
if (!self.__compiled__[self.__schemas__[alias]]) {
|
||||
// Silently fail on missed schemas to avoid errons on disable.
|
||||
// schemaError(alias, self.__schemas__[alias]);
|
||||
return
|
||||
}
|
||||
|
||||
self.__compiled__[alias].validate =
|
||||
self.__compiled__[self.__schemas__[alias]].validate
|
||||
self.__compiled__[alias].normalize =
|
||||
self.__compiled__[self.__schemas__[alias]].normalize
|
||||
})
|
||||
|
||||
//
|
||||
// Fake record for guessed links
|
||||
//
|
||||
self.__compiled__[''] = { validate: null, normalize: createNormalizer() }
|
||||
|
||||
//
|
||||
// Build schema condition
|
||||
//
|
||||
const slist = Object.keys(self.__compiled__)
|
||||
.filter(function (name) {
|
||||
// Filter disabled & fake schemas
|
||||
return name.length > 0 && self.__compiled__[name]
|
||||
})
|
||||
.map(escapeRE)
|
||||
.join('|')
|
||||
// (?!_) cause 1.5x slowdown
|
||||
self.re.schema_test = RegExp(`(^|(?!_)(?:[><\uff5c]|${re.src_ZPCc}))(${slist})`, 'i')
|
||||
self.re.schema_search = RegExp(`(^|(?!_)(?:[><\uff5c]|${re.src_ZPCc}))(${slist})`, 'ig')
|
||||
self.re.schema_at_start = RegExp(`^${self.re.schema_search.source}`, 'i')
|
||||
|
||||
self.re.pretest = RegExp(
|
||||
`(${self.re.schema_test.source})|(${self.re.host_fuzzy_test.source})|@`,
|
||||
'i'
|
||||
)
|
||||
}
|
||||
|
||||
/**
|
||||
* class Match
|
||||
*
|
||||
* Match result. Single element of array, returned by [[LinkifyIt#match]]
|
||||
**/
|
||||
function Match (text, schema, index, lastIndex) {
|
||||
const raw = text.slice(index, lastIndex)
|
||||
|
||||
/**
|
||||
* Match#schema -> String
|
||||
*
|
||||
* Prefix (protocol) for matched string.
|
||||
**/
|
||||
this.schema = schema.toLowerCase()
|
||||
/**
|
||||
* Match#index -> Number
|
||||
*
|
||||
* First position of matched string.
|
||||
**/
|
||||
this.index = index
|
||||
/**
|
||||
* Match#lastIndex -> Number
|
||||
*
|
||||
* Next position after matched string.
|
||||
**/
|
||||
this.lastIndex = lastIndex
|
||||
/**
|
||||
* Match#raw -> String
|
||||
*
|
||||
* Matched string.
|
||||
**/
|
||||
this.raw = raw
|
||||
/**
|
||||
* Match#text -> String
|
||||
*
|
||||
* Notmalized text of matched string.
|
||||
**/
|
||||
this.text = raw
|
||||
/**
|
||||
* Match#url -> String
|
||||
*
|
||||
* Normalized url of matched string.
|
||||
**/
|
||||
this.url = raw
|
||||
}
|
||||
|
||||
/**
|
||||
* class LinkifyIt
|
||||
**/
|
||||
|
||||
/**
|
||||
* new LinkifyIt(schemas, options)
|
||||
* - schemas (Object): Optional. Additional schemas to validate (prefix/validator)
|
||||
* - options (Object): { fuzzyLink|fuzzyEmail|fuzzyIP: true|false }
|
||||
*
|
||||
* Creates new linkifier instance with optional additional schemas.
|
||||
* Can be called without `new` keyword for convenience.
|
||||
*
|
||||
* By default understands:
|
||||
*
|
||||
* - `http(s)://...` , `ftp://...`, `mailto:...` & `//...` links
|
||||
* - "fuzzy" links and emails (example.com, foo@bar.com).
|
||||
*
|
||||
* `schemas` is an object, where each key/value describes protocol/rule:
|
||||
*
|
||||
* - __key__ - link prefix (usually, protocol name with `:` at the end, `skype:`
|
||||
* for example). `linkify-it` makes shure that prefix is not preceeded with
|
||||
* alphanumeric char and symbols. Only whitespaces and punctuation allowed.
|
||||
* - __value__ - rule to check tail after link prefix
|
||||
* - _String_ - just alias to existing rule
|
||||
* - _Object_
|
||||
* - _validate_ - validator function (should return matched length on success),
|
||||
* or `RegExp`.
|
||||
* - _normalize_ - optional function to normalize text & url of matched result
|
||||
* (for example, for @twitter mentions).
|
||||
*
|
||||
* `options`:
|
||||
*
|
||||
* - __fuzzyLink__ - recognige URL-s without `http(s):` prefix. Default `true`.
|
||||
* - __fuzzyIP__ - allow IPs in fuzzy links above. Can conflict with some texts
|
||||
* like version numbers. Default `false`.
|
||||
* - __fuzzyEmail__ - recognize emails without `mailto:` prefix.
|
||||
*
|
||||
**/
|
||||
function LinkifyIt (schemas, options) {
|
||||
if (!(this instanceof LinkifyIt)) {
|
||||
return new LinkifyIt(schemas, options)
|
||||
}
|
||||
|
||||
if (!options) {
|
||||
if (isOptionsObj(schemas)) {
|
||||
options = schemas
|
||||
schemas = {}
|
||||
}
|
||||
}
|
||||
|
||||
this.__opts__ = assign({}, defaultOptions, options)
|
||||
|
||||
this.__schemas__ = assign({}, defaultSchemas, schemas)
|
||||
this.__compiled__ = {}
|
||||
|
||||
this.__tlds__ = tlds_default
|
||||
this.__tlds_replaced__ = false
|
||||
|
||||
this.re = {}
|
||||
|
||||
compile(this)
|
||||
}
|
||||
|
||||
/** chainable
|
||||
* LinkifyIt#add(schema, definition)
|
||||
* - schema (String): rule name (fixed pattern prefix)
|
||||
* - definition (String|RegExp|Object): schema definition
|
||||
*
|
||||
* Add new rule definition. See constructor description for details.
|
||||
**/
|
||||
LinkifyIt.prototype.add = function add (schema, definition) {
|
||||
this.__schemas__[schema] = definition
|
||||
compile(this)
|
||||
return this
|
||||
}
|
||||
|
||||
/** chainable
|
||||
* LinkifyIt#set(options)
|
||||
* - options (Object): { fuzzyLink|fuzzyEmail|fuzzyIP: true|false }
|
||||
*
|
||||
* Set recognition options for links without schema.
|
||||
**/
|
||||
LinkifyIt.prototype.set = function set (options) {
|
||||
this.__opts__ = assign(this.__opts__, options)
|
||||
return this
|
||||
}
|
||||
|
||||
/**
|
||||
* LinkifyIt#test(text) -> Boolean
|
||||
*
|
||||
* Searches linkifiable pattern and returns `true` on success or `false` on fail.
|
||||
**/
|
||||
LinkifyIt.prototype.test = function test (text) {
|
||||
if (!text.length) { return false }
|
||||
|
||||
let m, re
|
||||
|
||||
// try to scan for link with schema - that's the most simple rule
|
||||
if (this.re.schema_test.test(text)) {
|
||||
re = this.re.schema_search
|
||||
re.lastIndex = 0
|
||||
while ((m = re.exec(text)) !== null) {
|
||||
if (this.testSchemaAt(text, m[2], re.lastIndex)) { return true }
|
||||
}
|
||||
}
|
||||
|
||||
if (this.__opts__.fuzzyLink && this.__compiled__['http:']) {
|
||||
// guess schemaless links
|
||||
if (text.search(this.re.host_fuzzy_test) >= 0) {
|
||||
if (text.match(this.__opts__.fuzzyIP ? this.re.link_fuzzy : this.re.link_no_ip_fuzzy) !== null) {
|
||||
return true
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
if (this.__opts__.fuzzyEmail && this.__compiled__['mailto:']) {
|
||||
// guess schemaless emails
|
||||
if (text.indexOf('@') >= 0) {
|
||||
// We can't skip this check, because this cases are possible:
|
||||
// 192.168.1.1@gmail.com, my.in@example.com
|
||||
if (text.match(this.re.email_fuzzy) !== null) { return true }
|
||||
}
|
||||
}
|
||||
|
||||
return false
|
||||
}
|
||||
|
||||
/**
|
||||
* LinkifyIt#pretest(text) -> Boolean
|
||||
*
|
||||
* Very quick check, that can give false positives. Returns true if link MAY BE
|
||||
* can exists. Can be used for speed optimization, when you need to check that
|
||||
* link NOT exists.
|
||||
**/
|
||||
LinkifyIt.prototype.pretest = function pretest (text) {
|
||||
return this.re.pretest.test(text)
|
||||
}
|
||||
|
||||
/**
|
||||
* LinkifyIt#testSchemaAt(text, name, position) -> Number
|
||||
* - text (String): text to scan
|
||||
* - name (String): rule (schema) name
|
||||
* - position (Number): text offset to check from
|
||||
*
|
||||
* Similar to [[LinkifyIt#test]] but checks only specific protocol tail exactly
|
||||
* at given position. Returns length of found pattern (0 on fail).
|
||||
**/
|
||||
LinkifyIt.prototype.testSchemaAt = function testSchemaAt (text, schema, pos) {
|
||||
// If not supported schema check requested - terminate
|
||||
if (!this.__compiled__[schema.toLowerCase()]) {
|
||||
return 0
|
||||
}
|
||||
return this.__compiled__[schema.toLowerCase()].validate(text, pos, this)
|
||||
}
|
||||
|
||||
/**
|
||||
* LinkifyIt#match(text) -> Array|null
|
||||
*
|
||||
* Returns array of found link descriptions or `null` on fail. We strongly
|
||||
* recommend to use [[LinkifyIt#test]] first, for best speed.
|
||||
*
|
||||
* ##### Result match description
|
||||
*
|
||||
* - __schema__ - link schema, can be empty for fuzzy links, or `//` for
|
||||
* protocol-neutral links.
|
||||
* - __index__ - offset of matched text
|
||||
* - __lastIndex__ - index of next char after mathch end
|
||||
* - __raw__ - matched text
|
||||
* - __text__ - normalized text
|
||||
* - __url__ - link, generated from matched text
|
||||
**/
|
||||
LinkifyIt.prototype.match = function match (text) {
|
||||
const result = []
|
||||
const type_schemed = []
|
||||
const type_fuzzy_link = []
|
||||
const type_fuzzy_email = []
|
||||
let m, len, re
|
||||
|
||||
function choose (a, b) {
|
||||
if (!a) { return b }
|
||||
if (!b) { return a }
|
||||
if (a.index !== b.index) { return a.index < b.index ? a : b }
|
||||
return a.lastIndex >= b.lastIndex ? a : b
|
||||
}
|
||||
|
||||
if (!text.length) { return null }
|
||||
|
||||
// scan for links with schema
|
||||
if (this.re.schema_test.test(text)) {
|
||||
re = this.re.schema_search
|
||||
re.lastIndex = 0
|
||||
while ((m = re.exec(text)) !== null) {
|
||||
len = this.testSchemaAt(text, m[2], re.lastIndex)
|
||||
if (len) {
|
||||
type_schemed.push({
|
||||
schema: m[2],
|
||||
index: m.index + m[1].length,
|
||||
lastIndex: m.index + m[0].length + len
|
||||
})
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
if (this.__opts__.fuzzyLink && this.__compiled__['http:']) {
|
||||
re = this.__opts__.fuzzyIP ? this.re.link_fuzzy_global : this.re.link_no_ip_fuzzy_global
|
||||
re.lastIndex = 0
|
||||
while ((m = re.exec(text)) !== null) {
|
||||
type_fuzzy_link.push({
|
||||
schema: '',
|
||||
index: m.index + m[1].length,
|
||||
lastIndex: m.index + m[0].length
|
||||
})
|
||||
}
|
||||
}
|
||||
|
||||
if (this.__opts__.fuzzyEmail && this.__compiled__['mailto:']) {
|
||||
re = this.re.email_fuzzy_global
|
||||
re.lastIndex = 0
|
||||
while ((m = re.exec(text)) !== null) {
|
||||
type_fuzzy_email.push({
|
||||
schema: 'mailto:',
|
||||
index: m.index + m[1].length,
|
||||
lastIndex: m.index + m[0].length
|
||||
})
|
||||
}
|
||||
}
|
||||
|
||||
const indexes = [0, 0, 0]
|
||||
let lastIndex = 0
|
||||
|
||||
for (;;) {
|
||||
const candidates = [
|
||||
type_schemed[indexes[0]],
|
||||
type_fuzzy_email[indexes[1]],
|
||||
type_fuzzy_link[indexes[2]]
|
||||
]
|
||||
|
||||
const candidate = choose(choose(candidates[0], candidates[1]), candidates[2])
|
||||
|
||||
if (!candidate) { break }
|
||||
|
||||
if (candidate === candidates[0]) {
|
||||
indexes[0]++
|
||||
} else if (candidate === candidates[1]) {
|
||||
indexes[1]++
|
||||
} else {
|
||||
indexes[2]++
|
||||
}
|
||||
|
||||
if (candidate.index < lastIndex) { continue }
|
||||
|
||||
const match = new Match(text, candidate.schema, candidate.index, candidate.lastIndex)
|
||||
this.__compiled__[match.schema].normalize(match, this)
|
||||
result.push(match)
|
||||
lastIndex = candidate.lastIndex
|
||||
}
|
||||
|
||||
if (result.length) {
|
||||
return result
|
||||
}
|
||||
|
||||
return null
|
||||
}
|
||||
|
||||
/**
|
||||
* LinkifyIt#matchAtStart(text) -> Match|null
|
||||
*
|
||||
* Returns fully-formed (not fuzzy) link if it starts at the beginning
|
||||
* of the string, and null otherwise.
|
||||
**/
|
||||
LinkifyIt.prototype.matchAtStart = function matchAtStart (text) {
|
||||
if (!text.length) return null
|
||||
|
||||
const m = this.re.schema_at_start.exec(text)
|
||||
if (!m) return null
|
||||
|
||||
const len = this.testSchemaAt(text, m[2], m[0].length)
|
||||
if (!len) return null
|
||||
|
||||
const match = new Match(text, m[2], m.index + m[1].length, m.index + m[0].length + len)
|
||||
|
||||
this.__compiled__[match.schema].normalize(match, this)
|
||||
return match
|
||||
}
|
||||
|
||||
/** chainable
|
||||
* LinkifyIt#tlds(list [, keepOld]) -> this
|
||||
* - list (Array): list of tlds
|
||||
* - keepOld (Boolean): merge with current list if `true` (`false` by default)
|
||||
*
|
||||
* Load (or merge) new tlds list. Those are user for fuzzy links (without prefix)
|
||||
* to avoid false positives. By default this algorythm used:
|
||||
*
|
||||
* - hostname with any 2-letter root zones are ok.
|
||||
* - biz|com|edu|gov|net|org|pro|web|xxx|aero|asia|coop|info|museum|name|shop|рф
|
||||
* are ok.
|
||||
* - encoded (`xn--...`) root zones are ok.
|
||||
*
|
||||
* If list is replaced, then exact match for 2-chars root zones will be checked.
|
||||
**/
|
||||
LinkifyIt.prototype.tlds = function tlds (list, keepOld) {
|
||||
list = Array.isArray(list) ? list : [list]
|
||||
|
||||
if (!keepOld) {
|
||||
this.__tlds__ = list.slice()
|
||||
this.__tlds_replaced__ = true
|
||||
compile(this)
|
||||
return this
|
||||
}
|
||||
|
||||
this.__tlds__ = this.__tlds__.concat(list)
|
||||
.sort()
|
||||
.filter(function (el, idx, arr) {
|
||||
return el !== arr[idx - 1]
|
||||
})
|
||||
.reverse()
|
||||
|
||||
compile(this)
|
||||
return this
|
||||
}
|
||||
|
||||
/**
|
||||
* LinkifyIt#normalize(match)
|
||||
*
|
||||
* Default normalizer (if schema does not define it's own).
|
||||
**/
|
||||
LinkifyIt.prototype.normalize = function normalize (match) {
|
||||
// Do minimal possible changes by default. Need to collect feedback prior
|
||||
// to move forward https://github.com/markdown-it/linkify-it/issues/1
|
||||
|
||||
if (!match.schema) { match.url = `http://${match.url}` }
|
||||
|
||||
if (match.schema === 'mailto:' && !/^mailto:/i.test(match.url)) {
|
||||
match.url = `mailto:${match.url}`
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* LinkifyIt#onCompile()
|
||||
*
|
||||
* Override to modify basic RegExp-s.
|
||||
**/
|
||||
LinkifyIt.prototype.onCompile = function onCompile () {
|
||||
}
|
||||
|
||||
export default LinkifyIt
|
||||
+193
@@ -0,0 +1,193 @@
|
||||
import { Any, Cc, Z, P } from 'uc.micro'
|
||||
|
||||
export default function (opts) {
|
||||
const re = {}
|
||||
opts = opts || {}
|
||||
|
||||
re.src_Any = Any.source
|
||||
re.src_Cc = Cc.source
|
||||
re.src_Z = Z.source
|
||||
re.src_P = P.source
|
||||
|
||||
// \p{\Z\P\Cc\CF} (white spaces + control + format + punctuation)
|
||||
re.src_ZPCc = [re.src_Z, re.src_P, re.src_Cc].join('|')
|
||||
|
||||
// \p{\Z\Cc} (white spaces + control)
|
||||
re.src_ZCc = [re.src_Z, re.src_Cc].join('|')
|
||||
|
||||
// Experimental. List of chars, completely prohibited in links
|
||||
// because can separate it from other part of text
|
||||
const text_separators = '[><\uff5c]'
|
||||
|
||||
// All possible word characters (everything without punctuation, spaces & controls)
|
||||
// Defined via punctuation & spaces to save space
|
||||
// Should be something like \p{\L\N\S\M} (\w but without `_`)
|
||||
re.src_pseudo_letter = `(?:(?!${text_separators}|${re.src_ZPCc})${re.src_Any})`
|
||||
// The same as abothe but without [0-9]
|
||||
// var src_pseudo_letter_non_d = '(?:(?![0-9]|' + src_ZPCc + ')' + src_Any + ')';
|
||||
|
||||
re.src_ip4 =
|
||||
|
||||
'(?:(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\\.){3}(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)'
|
||||
|
||||
// Prohibit any of "@/[]()" in user/pass to avoid wrong domain fetch.
|
||||
// Length is capped to exclude possible rescans till the end and avoid O(n^2)
|
||||
// DoS. No standard limit, just take something reasonable.
|
||||
re.src_auth = `(?:(?:(?!${re.src_ZCc}|[@/\\[\\]()]).){1,50}@)?`
|
||||
|
||||
re.src_port =
|
||||
|
||||
'(?::(?:6(?:[0-4]\\d{3}|5(?:[0-4]\\d{2}|5(?:[0-2]\\d|3[0-5])))|[1-5]?\\d{1,4}))?'
|
||||
|
||||
re.src_host_terminator =
|
||||
|
||||
`(?=$|${text_separators}|${re.src_ZPCc})` +
|
||||
`(?!${opts['---'] ? '-(?!--)|' : '-|'}_|:\\d|\\.-|\\.(?!$|${re.src_ZPCc}))`
|
||||
|
||||
re.src_path =
|
||||
|
||||
'(?:' +
|
||||
'[/?#]' +
|
||||
'(?:' +
|
||||
`(?!${re.src_ZCc}|${text_separators}|[()[\\]{}.,"'?!\\-;]).|` +
|
||||
`\\[(?:(?!${re.src_ZCc}|\\]).)*\\]|` +
|
||||
`\\((?:(?!${re.src_ZCc}|[)]).)*\\)|` +
|
||||
`\\{(?:(?!${re.src_ZCc}|[}]).)*\\}|` +
|
||||
`\\"(?:(?!${re.src_ZCc}|["]).)+\\"|` +
|
||||
`\\'(?:(?!${re.src_ZCc}|[']).)+\\'|` +
|
||||
|
||||
// allow `I'm_king` if no pair found
|
||||
`\\'(?=${re.src_pseudo_letter}|[-])|` +
|
||||
|
||||
// google has many dots in "google search" links (#66, #81).
|
||||
// github has ... in commit range links,
|
||||
// Restrict to
|
||||
// - english
|
||||
// - percent-encoded
|
||||
// - parts of file path
|
||||
// - params separator
|
||||
// until more examples found.
|
||||
'\\.{2,}[a-zA-Z0-9%/&]|' +
|
||||
|
||||
`\\.(?!${re.src_ZCc}|[.]|$)|` +
|
||||
(opts['---']
|
||||
? '\\-(?!--(?:[^-]|$))(?:-*)|' // `---` => long dash, terminate
|
||||
: '\\-+|'
|
||||
) +
|
||||
// allow `,,,` in paths
|
||||
`,(?!${re.src_ZCc}|$)|` +
|
||||
|
||||
// allow `;` if not followed by space-like char
|
||||
`;(?!${re.src_ZCc}|$)|` +
|
||||
|
||||
// allow `!!!` in paths, but not at the end
|
||||
`\\!+(?!${re.src_ZCc}|[!]|$)|` +
|
||||
|
||||
`\\?(?!${re.src_ZCc}|[?]|$)` +
|
||||
')+' +
|
||||
'|\\/' +
|
||||
')?'
|
||||
|
||||
// Allow anything in markdown spec, forbid quote (") at the first position
|
||||
// because emails enclosed in quotes are far more common
|
||||
// Max name length capped to 64 chars (RFC 5321). This also prevents O(n^2)
|
||||
// rescans to the end on inputs like `mailto:mailto:...`
|
||||
re.src_email_name =
|
||||
|
||||
'[\\-;:&=\\+\\$,\\.a-zA-Z0-9_][\\-;:&=\\+\\$,\\"\\.a-zA-Z0-9_]{0,63}'
|
||||
|
||||
re.src_xn =
|
||||
|
||||
'xn--[a-z0-9\\-]{1,59}'
|
||||
|
||||
// More to read about domain names
|
||||
// http://serverfault.com/questions/638260/
|
||||
|
||||
re.src_domain_root =
|
||||
|
||||
// Allow letters & digits (http://test1)
|
||||
'(?:' +
|
||||
re.src_xn +
|
||||
'|' +
|
||||
`${re.src_pseudo_letter}{1,63}` +
|
||||
')'
|
||||
|
||||
re.src_domain =
|
||||
|
||||
'(?:' +
|
||||
re.src_xn +
|
||||
'|' +
|
||||
`(?:${re.src_pseudo_letter})` +
|
||||
'|' +
|
||||
`(?:${re.src_pseudo_letter}(?:-|${re.src_pseudo_letter}){0,61}${re.src_pseudo_letter})` +
|
||||
')'
|
||||
|
||||
re.src_host =
|
||||
|
||||
'(?:' +
|
||||
// Don't need IP check, because digits are already allowed in normal domain names
|
||||
// src_ip4 +
|
||||
// '|' +
|
||||
`(?:(?:(?:${re.src_domain})\\.)*${re.src_domain})`/* _root */ +
|
||||
')'
|
||||
|
||||
re.tpl_host_fuzzy =
|
||||
|
||||
'(?:' +
|
||||
re.src_ip4 +
|
||||
'|' +
|
||||
`(?:(?:(?:${re.src_domain})\\.)+(?:%TLDS%))` +
|
||||
')'
|
||||
|
||||
re.tpl_host_no_ip_fuzzy =
|
||||
|
||||
`(?:(?:(?:${re.src_domain})\\.)+(?:%TLDS%))`
|
||||
|
||||
re.src_host_strict =
|
||||
|
||||
re.src_host + re.src_host_terminator
|
||||
|
||||
re.tpl_host_fuzzy_strict =
|
||||
|
||||
re.tpl_host_fuzzy + re.src_host_terminator
|
||||
|
||||
re.src_host_port_strict =
|
||||
|
||||
re.src_host + re.src_port + re.src_host_terminator
|
||||
|
||||
re.tpl_host_port_fuzzy_strict =
|
||||
|
||||
re.tpl_host_fuzzy + re.src_port + re.src_host_terminator
|
||||
|
||||
re.tpl_host_port_no_ip_fuzzy_strict =
|
||||
|
||||
re.tpl_host_no_ip_fuzzy + re.src_port + re.src_host_terminator
|
||||
|
||||
//
|
||||
// Main rules
|
||||
//
|
||||
|
||||
// Rude test fuzzy links by host, for quick deny
|
||||
re.tpl_host_fuzzy_test =
|
||||
|
||||
`localhost|www\\.|\\.\\d{1,3}\\.|(?:\\.(?:%TLDS%)(?:${re.src_ZPCc}|>|$))`
|
||||
|
||||
re.tpl_email_fuzzy =
|
||||
|
||||
`(^|${text_separators}|"|\\(|${re.src_ZCc})` +
|
||||
`(${re.src_email_name}@${re.tpl_host_fuzzy_strict})`
|
||||
|
||||
re.tpl_link_fuzzy =
|
||||
// Fuzzy link can't be prepended with .:/\- and non punctuation.
|
||||
// but can start with > (markdown blockquote)
|
||||
`(^|(?![.:/\\-_@])(?:[$+<=>^\`|\uff5c]|${re.src_ZPCc}))` +
|
||||
`((?![$+<=>^\`|\uff5c])${re.tpl_host_port_fuzzy_strict}${re.src_path})`
|
||||
|
||||
re.tpl_link_no_ip_fuzzy =
|
||||
// Fuzzy link can't be prepended with .:/\- and non punctuation.
|
||||
// but can start with > (markdown blockquote)
|
||||
`(^|(?![.:/\\-_@])(?:[$+<=>^\`|\uff5c]|${re.src_ZPCc}))` +
|
||||
`((?![$+<=>^\`|\uff5c])${re.tpl_host_port_no_ip_fuzzy_strict}${re.src_path})`
|
||||
|
||||
return re
|
||||
}
|
||||
+63
@@ -0,0 +1,63 @@
|
||||
{
|
||||
"name": "linkify-it",
|
||||
"version": "5.0.2",
|
||||
"description": "Links recognition library with FULL unicode support",
|
||||
"keywords": [
|
||||
"linkify",
|
||||
"linkifier",
|
||||
"autolink",
|
||||
"autolinker"
|
||||
],
|
||||
"repository": "markdown-it/linkify-it",
|
||||
"main": "build/index.cjs.js",
|
||||
"module": "index.mjs",
|
||||
"exports": {
|
||||
".": {
|
||||
"require": "./build/index.cjs.js",
|
||||
"import": "./index.mjs"
|
||||
},
|
||||
"./*": {
|
||||
"require": "./*",
|
||||
"import": "./*"
|
||||
}
|
||||
},
|
||||
"files": [
|
||||
"index.mjs",
|
||||
"lib/",
|
||||
"build/"
|
||||
],
|
||||
"license": "MIT",
|
||||
"funding": [
|
||||
{
|
||||
"type": "github",
|
||||
"url": "https://github.com/sponsors/puzrin"
|
||||
},
|
||||
{
|
||||
"type": "github",
|
||||
"url": "https://github.com/sponsors/markdown-it"
|
||||
}
|
||||
],
|
||||
"scripts": {
|
||||
"lint": "eslint .",
|
||||
"test": "npm run lint && npm run build && c8 --exclude build --exclude test -r text -r html -r lcov node --test",
|
||||
"demo": "npm run lint && node support/build_demo.mjs",
|
||||
"doc": "node support/build_doc.mjs",
|
||||
"build": "rollup -c support/rollup.config.mjs",
|
||||
"gh-pages": "npm run demo && npm run doc && gh-pages -d demo -f",
|
||||
"prepack": "npm test && npm run build && npm run demo && npm run doc",
|
||||
"postpublish": "npm run gh-pages"
|
||||
},
|
||||
"dependencies": {
|
||||
"uc.micro": "^2.0.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@rollup/plugin-node-resolve": "^15.2.3",
|
||||
"c8": "^11.0.0",
|
||||
"eslint": "^9.39.3",
|
||||
"gh-pages": "^6.1.0",
|
||||
"mitata": "^1.0.34",
|
||||
"neostandard": "^0.13.0",
|
||||
"ndoc": "^6.0.0",
|
||||
"rollup": "^4.6.1"
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user