A calm place to write long-form, and publish it to the open social web. skypress.blog/
0

Configure Feed

Select the types of activity you want to include in your feed.

Add highlight.js; export decodeEntities for reuse

+12 -1
+10
package-lock.json
··· 20 20 "@wordpress/blocks": "14.13.0", 21 21 "@wordpress/element": "6.24.0", 22 22 "astro": "6.4.4", 23 + "highlight.js": "^11.11.1", 23 24 "react": "18.3.1", 24 25 "react-dom": "18.3.1", 25 26 "sanitize-html": "^2.17.4" ··· 8188 8189 "resolved": "https://registry.npmjs.org/highlight-words-core/-/highlight-words-core-1.2.3.tgz", 8189 8190 "integrity": "sha512-m1O9HW3/GNHxzSIXWw1wCNXXsgLlxrP0OI6+ycGUhiUHkikqW3OrwVHz+lxeNBe5yqLESdIcj8PowHQ2zLvUvQ==", 8190 8191 "license": "MIT" 8192 + }, 8193 + "node_modules/highlight.js": { 8194 + "version": "11.11.1", 8195 + "resolved": "https://registry.npmjs.org/highlight.js/-/highlight.js-11.11.1.tgz", 8196 + "integrity": "sha512-Xwwo44whKBVCYoliBQwaPvtd/2tYFkRQtXDWj1nackaV2JPXx3L0+Jvd8/qCJ2p+ML0/XVkJ2q+Mr+UVdpJK5w==", 8197 + "license": "BSD-3-Clause", 8198 + "engines": { 8199 + "node": ">=12.0.0" 8200 + } 8191 8201 }, 8192 8202 "node_modules/history": { 8193 8203 "version": "5.3.0",
+1
package.json
··· 29 29 "@wordpress/blocks": "14.13.0", 30 30 "@wordpress/element": "6.24.0", 31 31 "astro": "6.4.4", 32 + "highlight.js": "^11.11.1", 32 33 "react": "18.3.1", 33 34 "react-dom": "18.3.1", 34 35 "sanitize-html": "^2.17.4"
+1 -1
src/lib/blocks/render.ts
··· 84 84 85 85 const TEXT_ATTRIBUTES = [ 'content', 'value', 'citation', 'caption' ]; 86 86 87 - function decodeEntities( input: string ): string { 87 + export function decodeEntities( input: string ): string { 88 88 return input 89 89 .replace( /&lt;/g, '<' ) 90 90 .replace( /&gt;/g, '>' )