Compare commits

...

2 commits

Author SHA1 Message Date
Cat /dev/Nulo 0395c7c353 0.0.9 2023-03-31 20:19:54 -03:00
Cat /dev/Nulo 79fc18a6fd escapar html 2023-03-31 20:19:43 -03:00
3 changed files with 24 additions and 10 deletions

View file

@ -1,5 +1,7 @@
// Inspirado en https://gitea.nulo.in/Nulo/html.lua/src/commit/cb7e35dcca0e45b397baf628f5e1a162a2269638/html.lua
import { escape } from "html-escaper";
export interface VirtualElement {
__element_type: string;
things: Thing[];
@ -51,7 +53,7 @@ export const section = basicElement("section");
export const time = basicElement("time");
// TODO: actually escape
const escapeHTML = (string: string) => string;
const escapeHTML = (string: string) => escape(string);
export const render = (...elements: Renderable[]): string => {
if (elements.length > 1) return elements.map((e) => render(e)).join("");
if (typeof elements[0] == "string") return escapeHTML(elements[0]);

View file

@ -1,7 +1,7 @@
{
"name": "@nulo/html.js",
"type": "module",
"version": "0.0.8",
"version": "0.0.9",
"description": "",
"main": "dist/html.js",
"files": [
@ -15,5 +15,8 @@
"devDependencies": {
"@types/node": "^18.11.17",
"typescript": "^4.9.4"
},
"dependencies": {
"html-escaper": "^3.0.3"
}
}

View file

@ -1,20 +1,29 @@
lockfileVersion: 5.4
lockfileVersion: '6.0'
specifiers:
'@types/node': ^18.11.17
typescript: ^4.9.4
dependencies:
html-escaper:
specifier: ^3.0.3
version: 3.0.3
devDependencies:
'@types/node': 18.11.17
typescript: 4.9.4
'@types/node':
specifier: ^18.11.17
version: 18.11.17
typescript:
specifier: ^4.9.4
version: 4.9.4
packages:
/@types/node/18.11.17:
/@types/node@18.11.17:
resolution: {integrity: sha512-HJSUJmni4BeDHhfzn6nF0sVmd1SMezP7/4F0Lq+aXzmp2xm9O7WXrUtHW/CHlYVtZUbByEvWidHqRtcJXGF2Ng==}
dev: true
/typescript/4.9.4:
/html-escaper@3.0.3:
resolution: {integrity: sha512-RuMffC89BOWQoY0WKGpIhn5gX3iI54O6nRA0yC124NYVtzjmFWBIiFd8M0x+ZdX0P9R4lADg1mgP8C7PxGOWuQ==}
dev: false
/typescript@4.9.4:
resolution: {integrity: sha512-Uz+dTXYzxXXbsFpM86Wh3dKCxrQqUcVMxwU54orwlJjOpO3ao8L7j5lH+dWfTwgCwIuM9GQ2kvVotzYJMXTBZg==}
engines: {node: '>=4.2.0'}
hasBin: true