@mralfarrakhan/svork 0.6.5 → 0.6.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.
Files changed (2) hide show
  1. package/dist/index.mjs +0 -11
  2. package/package.json +1 -1
package/dist/index.mjs CHANGED
@@ -2311,9 +2311,6 @@ const maskMarkdownCodeForSvelteParse = (source) => {
2311
2311
  return chars.join("");
2312
2312
  };
2313
2313
  const escapeSvelteTextBraces = (value) => value.replace(/\{/g, "{").replace(/\}/g, "}");
2314
- const escapeRawNodeBraces = (html) => {
2315
- return html.replace(/"([^"]*)"/g, (match, val) => val.includes("<") ? `"${val.replace(/</g, "&lt;").replace(/>/g, "&gt;")}"` : match).split(/(<(?:script|style)\b[\s\S]*?<\/(?:script|style)\s*>)/gi).map((part, i) => i % 2 === 1 ? part : escapeSvelteTextBraces(part)).join("");
2316
- };
2317
2314
  function escapeBracesPlugin() {
2318
2315
  return (tree) => {
2319
2316
  const SKIP = new Set(["script", "style"]);
@@ -2325,10 +2322,6 @@ function escapeBracesPlugin() {
2325
2322
  const visit = (node, ancestors) => {
2326
2323
  if (!node) return;
2327
2324
  if (node.type === "element") escapeProperties(node.properties);
2328
- if (node.type === "raw" && typeof node.value === "string") {
2329
- node.value = escapeRawNodeBraces(node.value);
2330
- return;
2331
- }
2332
2325
  if (node.type === "text") {
2333
2326
  if (!ancestors.some((a) => a?.type === "element" && typeof a.tagName === "string" && SKIP.has(a.tagName)) && typeof node.value === "string" && (node.value.includes("{") || node.value.includes("}"))) node.value = escapeSvelteTextBraces(node.value);
2334
2327
  }
@@ -2364,10 +2357,6 @@ const svelteMarkdown = (options) => {
2364
2357
  const vfile = await mdCompiler.process(markdownSource);
2365
2358
  let compiled = String(vfile);
2366
2359
  compiled = compiled.replace(/(&amp;#123;|&#x26;#123;)/g, "&#123;").replace(/(&amp;#125;|&#x26;#125;)/g, "&#125;");
2367
- compiled = compiled.replace(/"([^"]*)"/g, (match, val) => {
2368
- if (!val.includes("<") && !val.includes("{") && !val.includes("}")) return match;
2369
- return `"${val.replace(/</g, "&lt;").replace(/>/g, "&gt;").replace(/\{/g, "&#123;").replace(/\}/g, "&#125;")}"`;
2370
- });
2371
2360
  let restored = compiled;
2372
2361
  if (vfile.data?.fm && typeof vfile.data.fm === "object") metadata = {
2373
2362
  ...metadata,
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@mralfarrakhan/svork",
3
3
  "type": "module",
4
- "version": "0.6.5",
4
+ "version": "0.6.6",
5
5
  "description": "Svelte utilities for writing blog",
6
6
  "author": "mralfarrakhan <alfarrakhan@gmail.com",
7
7
  "license": "AGPL-3.0-or-later",