mirror of
https://github.com/mat-1/matdoesdev.git
synced 2025-08-02 14:46:04 +00:00
* Server scanning blog post & update sveltekit * remove console.log * improve some wording * Update .nvmrc * add rss feed * Add interactive server explorer thing to blog post * prerender blog.rss * Compress images * fix wrong image link * start on a random server * fix retrying * make blog.json smaller * Update RandomServers.svelte * improve wording and change animation of RandomServers * typo fix + do todo
15 lines
624 B
Diff
15 lines
624 B
Diff
diff --git a/node_modules/mdsvex/dist/main.cjs.js b/node_modules/mdsvex/dist/main.cjs.js
|
|
index 9755b4d..a87d82a 100644
|
|
--- a/node_modules/mdsvex/dist/main.cjs.js
|
|
+++ b/node_modules/mdsvex/dist/main.cjs.js
|
|
@@ -8721,6 +8721,10 @@ function parse$7(value, settings) {
|
|
|
|
namedEntity = type === name$1 ? decodeEntity_1(characters) : false;
|
|
|
|
+ // QUICKFIX https://github.com/pngwn/MDsveX/issues/296
|
|
+ if (namedEntity == '<') namedEntity = '<';
|
|
+ if (namedEntity == '>') namedEntity = '>';
|
|
+
|
|
if (namedEntity) {
|
|
entityCharacters = characters;
|
|
entity = namedEntity;
|