@ecency/render-helper 2.5.21 → 2.5.22
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/browser/index.js +13 -11
- package/dist/browser/index.js.map +1 -1
- package/dist/node/index.cjs +13 -11
- package/dist/node/index.cjs.map +1 -1
- package/dist/node/index.mjs +13 -11
- package/dist/node/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/node/index.cjs
CHANGED
|
@@ -99,15 +99,15 @@ var VIMEO_EMBED_REGEX = /https:\/\/player\.vimeo\.com\/video\/([0-9]+)(?:$|[?#])
|
|
|
99
99
|
var BITCHUTE_REGEX = /^(?:https?:\/\/)?(?:www\.)?bitchute\.com\/(?:video|embed)\/([a-z0-9]+)/i;
|
|
100
100
|
var D_TUBE_REGEX = /(https?:\/\/d\.tube\/#!\/v\/)(\w+)\/(\w+)/g;
|
|
101
101
|
var D_TUBE_REGEX2 = /(https?:\/\/d\.tube\/v\/)(\w+)\/(\w+)/g;
|
|
102
|
-
var D_TUBE_EMBED_REGEX = /^https:\/\/emb
|
|
102
|
+
var D_TUBE_EMBED_REGEX = /^https:\/\/emb\.d\.tube\/#!\/[^/?#]+\/[^/?#]+(?:$|[?#])/i;
|
|
103
103
|
var TWITCH_REGEX = /https?:\/\/(?:www\.)?twitch\.tv\/(?:(videos)\/)?([a-zA-Z0-9][\w]{3,24})/i;
|
|
104
|
-
var DAPPLR_REGEX = /^(https?:)?\/\/[a-z]*\.dapplr
|
|
105
|
-
var TRUVVL_REGEX = /^https?:\/\/embed
|
|
106
|
-
var LBRY_REGEX = /^(https?:)?\/\/lbry
|
|
104
|
+
var DAPPLR_REGEX = /^(https?:)?\/\/[a-z]*\.dapplr\.in\/file\/dapplr-videos\/.*/i;
|
|
105
|
+
var TRUVVL_REGEX = /^https?:\/\/embed\.truvvl\.com\/(@[\w.\d-]+)\/(.*)/i;
|
|
106
|
+
var LBRY_REGEX = /^(https?:)?\/\/lbry\.tv\/\$\/embed\/[^?#]+(?:$|[?#])/i;
|
|
107
107
|
var ODYSEE_REGEX = /^(https?:)?\/\/odysee\.com\/(?:\$|%24)\/embed\/[^?#]+(?:$|[?#])/i;
|
|
108
108
|
var SKATEHIVE_IPFS_REGEX = /^https?:\/\/ipfs\.skatehive\.app\/ipfs\/([^/?#]+)/i;
|
|
109
109
|
var SKATEHYPE_EMBED_REGEX = /^(https?:)?\/\/(www\.)?skatehype\.com\/ifplay\.php\?v=\d+(?:$|[&#])/i;
|
|
110
|
-
var ARCH_REGEX = /^(https?:)?\/\/archive
|
|
110
|
+
var ARCH_REGEX = /^(https?:)?\/\/archive\.org\/embed\/[^/?#]+(?:$|[?#])/i;
|
|
111
111
|
var SPEAK_REGEX = /(?:https?:\/\/(?:(?:play\.)?3speak\.([a-z]+)\/watch\?v=)|(?:(?:play\.)?3speak\.([a-z]+)\/embed\?v=))([A-Za-z0-9_\-\.\/]+)(&.*)?/i;
|
|
112
112
|
var SPEAK_EMBED_REGEX = /^(https?:)?\/\/(?:play\.)?3speak\.([a-z]+)\/(?:embed|watch)\?.+$/i;
|
|
113
113
|
var SPEAK_AUDIO_REGEX = /https?:\/\/audio\.3speak\.tv\/play\?[^\s]+/i;
|
|
@@ -126,7 +126,6 @@ var LOOM_REGEX = /^(https?:)?\/\/www\.loom\.com\/share\/([^/?#]+)(?:$|[?#])/i;
|
|
|
126
126
|
var LOOM_EMBED_REGEX = /^(https?:)?\/\/www\.loom\.com\/embed\/([^/?#]+)(?:$|[?#])/i;
|
|
127
127
|
var AUREAL_EMBED_REGEX = /^(https?:)?\/\/(www\.)?(?:aureal-embed)\.web\.app\/([0-9]+)(?:$|[?#])/i;
|
|
128
128
|
var ENTITY_REGEX = /&([a-z0-9]+|#[0-9]{1,6}|#x[0-9a-fA-F]{1,6});/ig;
|
|
129
|
-
var SECTION_REGEX = /\B(\#[\da-zA-Z-_]+\b)(?!;)/i;
|
|
130
129
|
var ID_WHITELIST = /^[A-Za-z][-A-Za-z0-9_]*$/;
|
|
131
130
|
|
|
132
131
|
// src/consts/allowed-attributes.const.ts
|
|
@@ -925,10 +924,6 @@ function a(el, forApp, parentDomain = "ecency.com", seoContext, renderOptions) {
|
|
|
925
924
|
if (!href) {
|
|
926
925
|
return;
|
|
927
926
|
}
|
|
928
|
-
const className = el.getAttribute("class");
|
|
929
|
-
if (className && (["markdown-author-link", "markdown-tag-link"].includes(className) || className.includes("er-author") || className.includes("er-tag"))) {
|
|
930
|
-
return;
|
|
931
|
-
}
|
|
932
927
|
const trimmed = href.trim().replace(/[\t\n\r\f\v\0]/g, "").toLowerCase();
|
|
933
928
|
const isSafeScheme = /^(https?|mailto|hive|tel|web\+[a-z0-9.+-]+):/i.test(trimmed);
|
|
934
929
|
const isRelative = /^(\/\/|\/[^/]?|#|\?|[a-z0-9._\-]+(\/|$))/i.test(trimmed);
|
|
@@ -936,6 +931,13 @@ function a(el, forApp, parentDomain = "ecency.com", seoContext, renderOptions) {
|
|
|
936
931
|
el.removeAttribute("href");
|
|
937
932
|
return;
|
|
938
933
|
}
|
|
934
|
+
const className = el.getAttribute("class");
|
|
935
|
+
if (className && (["markdown-author-link", "markdown-tag-link"].includes(className) || className.includes("er-author") || className.includes("er-tag"))) {
|
|
936
|
+
if (el.getAttribute("target")) {
|
|
937
|
+
el.setAttribute("rel", getExternalLinkRel(seoContext));
|
|
938
|
+
}
|
|
939
|
+
return;
|
|
940
|
+
}
|
|
939
941
|
if (href.match(IMG_REGEX) && href.trim().replace(/&/g, "&") === getSerializedInnerHTML(el).trim().replace(/&/g, "&")) {
|
|
940
942
|
const isLCP = false;
|
|
941
943
|
const imgHTML = createImageHTML(href, isLCP, forApp);
|
|
@@ -1533,7 +1535,7 @@ function a(el, forApp, parentDomain = "ecency.com", seoContext, renderOptions) {
|
|
|
1533
1535
|
}
|
|
1534
1536
|
el.removeAttribute("href");
|
|
1535
1537
|
} else {
|
|
1536
|
-
const matchS = href.
|
|
1538
|
+
const matchS = href.trim().startsWith("#");
|
|
1537
1539
|
if (matchS) {
|
|
1538
1540
|
el.setAttribute("class", "markdown-internal-link");
|
|
1539
1541
|
} else {
|