// add an inline break using line breaks

import { CreateDocx } from "../../../build";
import * as fs from "fs";

const docx = new CreateDocx();

docx.addText("New content\nwith a break.");

docx.save().then(contents => {
    fs.writeFileSync("addBreak_3.docx", Buffer.from(contents));
});
