-
-
Notifications
You must be signed in to change notification settings - Fork 500
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
How to integrate HTML string into the docx? #2632
Comments
I'm also interested in this, would it be possible to have this feature? |
Same question 🙏 |
Same here! |
I am also interested in this |
Here is a minimal implementation that works for very simple HTML (WYSIWYG outputs). import { parseFromString } from "dom-parser";
import {
Document,
Footer,
PageNumber,
Paragraph,
TextRun,
} from "docx";
import * as he from "he";
export const htmlStrToParagraph = (str: string): Paragraph[] => {
const dom = parseFromString(`<body>${str}</body>`)
const sectionChildren = [];
dom.getElementsByTagName("body")[0].childNodes.forEach((node) => {
if (["h1", "h2", "h3"].includes(node.nodeName)) {
sectionChildren.push(
new Paragraph({
children: [
new TextRun({
text: he.decode(node.textContent),
bold: true,
}),
],
spacing: { after: 0 },
})
);
} else if (["p"].includes(node.nodeName)) {
sectionChildren.push(
new Paragraph({
children: [
new TextRun({
text: he.decode(node.textContent),
}),
],
spacing: { after: 0 },
})
);
} else if (node.nodeName === "ul") {
node.childNodes.forEach((bullet) => {
if (bullet.nodeName === "li") {
sectionChildren.push(
new Paragraph({
text: he.decode(bullet.textContent),
bullet: {
level: 0,
},
spacing: {
before: 0,
after: 0,
},
})
);
}
});
}
sectionChildren.push(
new Paragraph({
text: "",
spacing: {
before: 0,
after: 0,
},
})
);
});
return sectionChildren;
}; You can then run it to construct a document: const htmlStrToDocx = async (str: string): Promise<Document> => {
return new Document({
creator: "Me",
sections: [
{
children: htmlStrToParagraph(str),
footers: {
default: new Footer({
children: [
new Paragraph({
alignment: AlignmentType.CENTER,
children: [
new TextRun({
children: [PageNumber.CURRENT],
color: "000000",
}),
],
}),
],
}),
},
},
],
});
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Want to integrate Html strings in my docx file and don't see how to to do it right now ?
The text was updated successfully, but these errors were encountered: