@ecency/render-helper 2.4.5 → 2.4.6
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
CHANGED
|
@@ -4,8 +4,10 @@ import multihash from 'multihashes';
|
|
|
4
4
|
import querystring from 'querystring';
|
|
5
5
|
import { Remarkable } from 'remarkable';
|
|
6
6
|
import { linkify as linkify$1 } from 'remarkable/linkify';
|
|
7
|
-
import { LRUCache } from 'lru-cache';
|
|
8
7
|
import he from 'he';
|
|
8
|
+
import * as htmlparser2 from 'htmlparser2';
|
|
9
|
+
import * as domSerializerModule from 'dom-serializer';
|
|
10
|
+
import { LRUCache } from 'lru-cache';
|
|
9
11
|
|
|
10
12
|
var __require = /* @__PURE__ */ ((x) => typeof require !== "undefined" ? require : typeof Proxy !== "undefined" ? new Proxy(x, {
|
|
11
13
|
get: (a2, b) => (typeof require !== "undefined" ? require : a2)[b]
|
|
@@ -1263,6 +1265,7 @@ function traverse(node, forApp, depth = 0, webp = false, state = { firstImageFou
|
|
|
1263
1265
|
function cleanReply(s) {
|
|
1264
1266
|
return (s ? s.split("\n").filter((item) => item.toLowerCase().includes("posted using [partiko") === false).filter((item) => item.toLowerCase().includes("posted using [dapplr") === false).filter((item) => item.toLowerCase().includes("posted using [leofinance") === false).filter((item) => item.toLowerCase().includes("posted via [neoxian") === false).filter((item) => item.toLowerCase().includes("posted using [neoxian") === false).filter((item) => item.toLowerCase().includes("posted with [stemgeeks") === false).filter((item) => item.toLowerCase().includes("posted using [bilpcoin") === false).filter((item) => item.toLowerCase().includes("posted using [inleo") === false).filter((item) => item.toLowerCase().includes("posted using [sportstalksocial]") === false).filter((item) => item.toLowerCase().includes("<center><sub>[posted using aeneas.blog") === false).filter((item) => item.toLowerCase().includes("<center><sub>posted via [proofofbrain.io") === false).filter((item) => item.toLowerCase().includes("<center>posted on [hypnochain") === false).filter((item) => item.toLowerCase().includes("<center><sub>posted via [weedcash.network") === false).filter((item) => item.toLowerCase().includes("<center>posted on [naturalmedicine.io") === false).filter((item) => item.toLowerCase().includes("<center><sub>posted via [musicforlife.io") === false).filter((item) => item.toLowerCase().includes("if the truvvl embed is unsupported by your current frontend, click this link to view this story") === false).filter((item) => item.toLowerCase().includes("<center><em>posted from truvvl") === false).filter((item) => item.toLowerCase().includes('view this post <a href="https://travelfeed.io/') === false).filter((item) => item.toLowerCase().includes("read this post on travelfeed.io for the best experience") === false).filter((item) => item.toLowerCase().includes('posted via <a href="https://www.dporn.co/"') === false).filter((item) => item.toLowerCase().includes("\u25B6\uFE0F [watch on 3speak](https://3speak") === false).filter((item) => item.toLowerCase().includes("<sup><sub>posted via [inji.com]") === false).filter((item) => item.toLowerCase().includes("view this post on [liketu]") === false).filter((item) => item.toLowerCase().includes("[via Inbox]") === false).join("\n") : "").replace('Posted via <a href="https://d.buzz" data-link="promote-link">D.Buzz</a>', "").replace('<div class="pull-right"><a href="/@hive.engage"></a></div>', "").replace('<div><a href="https://engage.hivechain.app"></a></div>', "").replace(`<div class="text-center"><img src="https://cdn.steemitimages.com/DQmNp6YwAm2qwquALZw8PdcovDorwaBSFuxQ38TrYziGT6b/A-20.png"><a href="https://bit.ly/actifit-app"><img src="https://cdn.steemitimages.com/DQmQqfpSmcQtfrHAtzfBtVccXwUL9vKNgZJ2j93m8WNjizw/l5.png"></a><a href="https://bit.ly/actifit-ios"><img src="https://cdn.steemitimages.com/DQmbWy8KzKT1UvCvznUTaFPw6wBUcyLtBT5XL9wdbB7Hfmn/l6.png"></a></div>`, "");
|
|
1265
1267
|
}
|
|
1268
|
+
var domSerializer = domSerializerModule.default || domSerializerModule;
|
|
1266
1269
|
var lolight = null;
|
|
1267
1270
|
function getLolightInstance() {
|
|
1268
1271
|
if (!lolight) {
|
|
@@ -1354,8 +1357,6 @@ function markdownToHTML(input, forApp, webp, parentDomain = "ecency.com") {
|
|
|
1354
1357
|
try {
|
|
1355
1358
|
output = md.render(input);
|
|
1356
1359
|
const preSanitized = sanitizeHtml(output);
|
|
1357
|
-
const htmlparser2 = __require("htmlparser2");
|
|
1358
|
-
const domSerializer = __require("dom-serializer").default;
|
|
1359
1360
|
const dom = htmlparser2.parseDocument(preSanitized, {
|
|
1360
1361
|
// lenient options - don't throw on malformed HTML
|
|
1361
1362
|
lowerCaseTags: false,
|
|
@@ -1366,8 +1367,7 @@ function markdownToHTML(input, forApp, webp, parentDomain = "ecency.com") {
|
|
|
1366
1367
|
traverse(doc, forApp, 0, webp, { firstImageFound: false }, parentDomain);
|
|
1367
1368
|
output = serializer.serializeToString(doc);
|
|
1368
1369
|
} catch (fallbackError) {
|
|
1369
|
-
const
|
|
1370
|
-
const escapedContent = he2.encode(output || md.render(input));
|
|
1370
|
+
const escapedContent = he.encode(output || md.render(input));
|
|
1371
1371
|
output = `<p dir="auto">${escapedContent}</p>`;
|
|
1372
1372
|
}
|
|
1373
1373
|
}
|