2022-06-15 00:07:12 +01:00
|
|
|
// Example on how to preserve word wrap text. Works with all languages.
|
|
|
|
// Import from 'docx' rather than '../build' if you install from npm
|
|
|
|
import * as fs from "fs";
|
|
|
|
import { Document, Packer, Paragraph, TextRun, SpaceType } from "../build";
|
|
|
|
|
|
|
|
const doc = new Document({
|
|
|
|
sections: [
|
|
|
|
{
|
|
|
|
children: [
|
2022-10-25 18:53:00 +01:00
|
|
|
new Paragraph({
|
|
|
|
wordWrap: true,
|
|
|
|
children: [
|
|
|
|
new TextRun("我今天遛狗去公园"),
|
|
|
|
new TextRun({
|
|
|
|
text: "456435234523456435564745673456345456435234523456435564745673456345456435234523456435564745673456345456435234523456435564745673456345456435234523456435564745673456345",
|
|
|
|
}),
|
|
|
|
],
|
|
|
|
}),
|
|
|
|
new Paragraph({
|
|
|
|
wordWrap: true,
|
|
|
|
children: [
|
|
|
|
new TextRun(
|
|
|
|
"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua",
|
|
|
|
),
|
|
|
|
new TextRun({
|
|
|
|
text: "456435234523456435564745673456345456435234523456435564745673456345456435234523456435564745673456345456435234523456435564745673456345456435234523456435564745673456345",
|
|
|
|
}),
|
|
|
|
],
|
|
|
|
}),
|
2022-06-15 00:07:12 +01:00
|
|
|
new Paragraph({
|
|
|
|
children: [
|
|
|
|
new TextRun("我今天遛狗去公园"),
|
|
|
|
new TextRun({
|
|
|
|
text: "456435234523456435564745673456345456435234523456435564745673456345456435234523456435564745673456345456435234523456435564745673456345456435234523456435564745673456345",
|
|
|
|
}),
|
|
|
|
],
|
|
|
|
}),
|
|
|
|
new Paragraph({
|
|
|
|
children: [
|
|
|
|
new TextRun(
|
|
|
|
"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua",
|
|
|
|
),
|
|
|
|
new TextRun({
|
|
|
|
text: "456435234523456435564745673456345456435234523456435564745673456345456435234523456435564745673456345456435234523456435564745673456345456435234523456435564745673456345",
|
|
|
|
}),
|
|
|
|
],
|
|
|
|
}),
|
|
|
|
],
|
|
|
|
},
|
|
|
|
],
|
|
|
|
});
|
|
|
|
|
|
|
|
Packer.toBuffer(doc).then((buffer) => {
|
|
|
|
fs.writeFileSync("My Document.docx", buffer);
|
|
|
|
});
|