islamic mcqs.
const { Document, Packer, Paragraph, TextRun, Table, TableRow, TableCell, AlignmentType, HeadingLevel, BorderStyle, WidthType, ShadingType } = require('docx'); const fs = require('fs'); const border = { style: BorderStyle.SINGLE, size: 1, color: "AAAAAA" }; const borders = { top: border, bottom: border, left: border, right: border }; function headRow(text, bg = "1F4E79") { return new TableRow({ children: [ new TableCell({ borders, columnSpan: 2, shading: { fill: bg, type: ShadingType.CLEAR }, margins: { top: 80, bottom: 80, left: 120, right: 120 }, children: [new Paragraph({ alignment: AlignmentType.CENTER, children: [new TextRun({ text, bold: true, color: "FFFFFF", size: 24, font: "Arial" })] })] }) ] }); } function qRow(no, question, answer, shade) { const bg = shade ? "EAF1FB" : "FFFFFF"; return new TableRow({ ...