Markdown parser, done right. 100% CommonMark support, extensions, syntax plugins & high speed
https://markdown-it.github.io/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
368 B
17 lines
368 B
'use strict';
|
|
|
|
|
|
var replaceEntities = require('../common/utils').replaceEntities;
|
|
|
|
|
|
module.exports = function normalizeLink(url) {
|
|
var normalized = replaceEntities(url);
|
|
|
|
// We don't care much about result of mailformed URIs,
|
|
// but shoud not throw exception.
|
|
try {
|
|
normalized = decodeURI(normalized);
|
|
} catch (__) {}
|
|
|
|
return encodeURI(normalized);
|
|
};
|
|
|