// add RTL contents

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

const docx = new CreateDocx();
docx.setRtl();

docx.addText("טקסט פשוט בעברית.");

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