Sha256: cbe99a4c20897bd7fdce78cd148d2746bdaa11f82690aef18f8f7dd504c4e9fd
Contents?: true
Size: 1.36 KB
Versions: 6
Compression:
Stored size: 1.36 KB
Contents
(function(){ if (!self.Prism) { return; } var url = /\b([a-z]{3,7}:\/\/|tel:)[\w\-+%~/.:#=?&]+/, email = /\b\S+@[\w.]+[a-z]{2}/, linkMd = /\[([^\]]+)]\(([^)]+)\)/, // Tokens that may contain URLs and emails candidates = ['comment', 'url', 'attr-value', 'string']; for (var language in Prism.languages) { var tokens = Prism.languages[language]; Prism.languages.DFS(tokens, function (key, def, type) { if (candidates.indexOf(type) > -1 && Prism.util.type(def) !== 'Array') { if (!def.pattern) { def = this[key] = { pattern: def }; } def.inside = def.inside || {}; if (type == 'comment') { def.inside['md-link'] = linkMd; } if (type == 'attr-value') { Prism.languages.insertBefore('inside', 'punctuation', { 'url-link': url }, def); } else { def.inside['url-link'] = url; } def.inside['email-link'] = email; } }); tokens['url-link'] = url; tokens['email-link'] = email; } Prism.hooks.add('wrap', function(env) { if (/-link$/.test(env.type)) { env.tag = 'a'; var href = env.content; if (env.type == 'email-link' && href.indexOf('mailto:') != 0) { href = 'mailto:' + href; } else if (env.type == 'md-link') { // Markdown var match = env.content.match(linkMd); href = match[2]; env.content = match[1]; } env.attributes.href = href; } }); })();
Version data entries
6 entries across 6 versions & 2 rubygems