diff --git a/docs/components/converter.html.js b/docs/components/converter.html.js
index 5afa57f..6982c41 100644
--- a/docs/components/converter.html.js
+++ b/docs/components/converter.html.js
@@ -164,7 +164,8 @@ function registerClientPart(page_id){
document.head.append(
el("script", {
- src: "https://unpkg.com/@beforesemicolon/html-parser/dist/client.js",
+ // src: "https://unpkg.com/@beforesemicolon/html-parser/dist/client.js",
+ src: "https://cdn.jsdelivr.net/npm/@beforesemicolon/html-parser/dist/client.js",
type: "text/javascript",
charset: "utf-8",
defer: true
diff --git a/docs/components/converter.js.js b/docs/components/converter.js.js
index a41654f..479f43d 100644
--- a/docs/components/converter.js.js
+++ b/docs/components/converter.js.js
@@ -48,7 +48,8 @@ function convertHTMLtoDDE(html, options = {}) {
try {
const parsed = parse(html);
- return nodeToDDE(parsed.children[0], options);
+ const content = parsed.children[0] || parsed.childNodes[0];
+ return !content ? "" : nodeToDDE(content, options);
} catch (error) {
console.error("Parsing error:", error);
return `// Error parsing HTML: ${error.message}`;
@@ -64,10 +65,14 @@ const NODE_TYPE = {
// Convert a parsed node to dd code
function nodeToDDE(node, options = {}, level = 0) {
+ const tab= options.indent === "-1" ? "\t" : " ".repeat(options.indent);
+ const indent = tab.repeat(level);
+ const nextIndent = tab.repeat(level + 1);
+
const { nodeType } = node;
// Handle text nodes
if (nodeType === NODE_TYPE.TEXT) {
- const text = node.nodeValue;
+ const text = el("i", { innerText: node.nodeValue }).textContent;
if (!text.trim()) return null;
// Return as plain text or template string for longer text
@@ -78,15 +83,15 @@ function nodeToDDE(node, options = {}, level = 0) {
// Handle comment nodes
if (nodeType === NODE_TYPE.COMMENT) {
- return null; // TODO: Skip comments?
+ const text = node.nodeValue;
+ if (!text.trim()) return null;
+ return text.includes("\n")
+ ? [ "/*", ...text.trim().split("\n").map(l=> tab+l), "*/" ]
+ : [ `// ${text}` ];
}
// For element nodes
if (nodeType === NODE_TYPE.ELEMENT) {
- const tab= options.indent === "-1" ? "\t" : " ".repeat(options.indent);
- const indent = tab.repeat(level);
- const nextIndent = tab.repeat(level + 1);
-
// Special case for SVG elements
const isNS = node.tagName === "svg";
const elFunction = isNS ? "elNS" : "el";
@@ -171,12 +176,14 @@ function nodeToDDE(node, options = {}, level = 0) {
// Process children
const children = [];
for (const child of node.childNodes) {
- const childCode = nodeToDDE(child, options, level + 1);
- if (childCode) children.push(childCode);
+ const childCode = nodeToDDE(child, options, level + 1);
+ if (!childCode) continue;
+
+ children.push(childCode);
}
- if(children.length===1 && node.childNodes[0].nodeType===NODE_TYPE.TEXT){
- const textContent= children.pop().slice(1, -1);
- attrs.unshift(`textContent: "${textContent}"`);
+ if(node.childNodes.length===1 && node.childNodes[0].nodeType===NODE_TYPE.TEXT){
+ const textContent= children.pop().slice(1, -1);
+ attrs.unshift(`textContent: "${textContent}"`);
}
// Build the element creation code
@@ -189,15 +196,16 @@ function nodeToDDE(node, options = {}, level = 0) {
result += `, {\n${nextIndent}${attrs.join(`,\n${nextIndent}`)},\n${indent}}`;
else
result += `, { ${attrs.join(", ")} }`;
- } else if (children.length > 0) {
- result += ", null";
}
// Add children if any
if (children.length > 0) {
- result += `).append(\n${nextIndent}${children.join(`,\n${nextIndent}`)},\n${indent})`;
+ const chs= children.map(ch=>
+ Array.isArray(ch) ? ch.map(l=> nextIndent + l).join("\n") :
+ nextIndent + ch + ",");
+ result += `).append(\n${chs.join("\n")}\n${indent})`;
} else {
- result += ")";
+ result += ")";
}
return result;
diff --git a/docs/components/ireland.html.js b/docs/components/ireland.html.js
index f6bcf6b..15b42e2 100644
--- a/docs/components/ireland.html.js
+++ b/docs/components/ireland.html.js
@@ -55,7 +55,10 @@ export function ireland({ src, exportName = "default", props = {} }) {
import(path)
.then(module => {
const component = module[exportName];
- element.replaceWith(el(component, props, mark(id)));
+ const content= el(component, props, mark(id));
+ element.replaceWith(content);
+ content.querySelectorAll("input, textarea, button")
+ .forEach(el=> el.disabled= true);
})
.catch(console.error)
);
diff --git a/docs/components/ireland.js.js b/docs/components/ireland.js.js
index 7dbd39d..b552395 100644
--- a/docs/components/ireland.js.js
+++ b/docs/components/ireland.js.js
@@ -5,7 +5,6 @@ export function loadIrelands(store) {
document.body.querySelectorAll("[data-dde-mark]").forEach(ireland => {
const { ddeMark }= ireland.dataset;
if(!store.has(ddeMark)) return;
- ireland.querySelectorAll("input").forEach(input => input.disabled = true);
const { path, exportName, props }= store.get(ddeMark);
import("./"+path).then(module => {
ireland.replaceWith(el(module[exportName], props));