Spaces:
Runtime error
Runtime error
File size: 7,143 Bytes
56b6519 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 |
var docx = require('docx');
var xml = require('xml');
var htmlparser = require('htmlparser2');
function html2ooxml(html, style = '') {
if (html === '') return html;
if (!html.match(/^<.+>/)) html = `<p>${html}</p>`;
var doc = new docx.Document({ sections: [] });
var paragraphs = [];
var cParagraph = null;
var cRunProperties = {};
var cParagraphProperties = {};
var list_state = [];
var inCodeBlock = false;
var parser = new htmlparser.Parser(
{
onopentag(tag, attribs) {
if (tag === 'h1') {
cParagraph = new docx.Paragraph({ heading: 'Heading1' });
} else if (tag === 'h2') {
cParagraph = new docx.Paragraph({ heading: 'Heading2' });
} else if (tag === 'h3') {
cParagraph = new docx.Paragraph({ heading: 'Heading3' });
} else if (tag === 'h4') {
cParagraph = new docx.Paragraph({ heading: 'Heading4' });
} else if (tag === 'h5') {
cParagraph = new docx.Paragraph({ heading: 'Heading5' });
} else if (tag === 'h6') {
cParagraph = new docx.Paragraph({ heading: 'Heading6' });
} else if (tag === 'div' || tag === 'p') {
if (style && typeof style === 'string')
cParagraphProperties.style = style;
cParagraph = new docx.Paragraph(cParagraphProperties);
} else if (tag === 'pre') {
inCodeBlock = true;
cParagraph = new docx.Paragraph({ style: 'Code' });
} else if (tag === 'b' || tag === 'strong') {
cRunProperties.bold = true;
} else if (tag === 'i' || tag === 'em') {
cRunProperties.italics = true;
} else if (tag === 'u') {
cRunProperties.underline = {};
} else if (tag === 'strike' || tag === 's') {
cRunProperties.strike = true;
} else if (tag === 'mark') {
var bgColor = attribs['data-color'] || '#ffff25';
cRunProperties.highlight = getHighlightColor(bgColor);
// Use text color if set (to handle white or black text depending on background color)
var color = attribs.style.match(/.+color:.(.+)/);
if (color && color[1]) cRunProperties.color = getTextColor(color[1]);
} else if (tag === 'br') {
if (inCodeBlock) {
paragraphs.push(cParagraph);
cParagraph = new docx.Paragraph({ style: 'Code' });
} else cParagraph.addChildElement(new docx.Run({ break: 1 }));
} else if (tag === 'ul') {
list_state.push('bullet');
} else if (tag === 'ol') {
list_state.push('number');
} else if (tag === 'li') {
var level = list_state.length - 1;
if (level >= 0 && list_state[level] === 'bullet')
cParagraphProperties.bullet = { level: level };
else if (level >= 0 && list_state[level] === 'number')
cParagraphProperties.numbering = { reference: 2, level: level };
else cParagraphProperties.bullet = { level: 0 };
} else if (tag === 'code') {
cRunProperties.style = 'CodeChar';
} else if (tag === 'legend' && attribs && attribs.alt !== 'undefined') {
var label = attribs.label || 'Figure';
cParagraph = new docx.Paragraph({
style: 'Caption',
alignment: docx.AlignmentType.CENTER,
});
cParagraph.addChildElement(new docx.TextRun(`${label} `));
cParagraph.addChildElement(new docx.SimpleField(`SEQ ${label}`, '1'));
cParagraph.addChildElement(new docx.TextRun(` - ${attribs.alt}`));
}
},
ontext(text) {
if (text && cParagraph) {
cRunProperties.text = text;
cParagraph.addChildElement(new docx.TextRun(cRunProperties));
}
},
onclosetag(tag) {
if (
[
'h1',
'h2',
'h3',
'h4',
'h5',
'h6',
'div',
'p',
'pre',
'img',
'legend',
].includes(tag)
) {
paragraphs.push(cParagraph);
cParagraph = null;
cParagraphProperties = {};
if (tag === 'pre') inCodeBlock = false;
} else if (tag === 'b' || tag === 'strong') {
delete cRunProperties.bold;
} else if (tag === 'i' || tag === 'em') {
delete cRunProperties.italics;
} else if (tag === 'u') {
delete cRunProperties.underline;
} else if (tag === 'strike' || tag === 's') {
delete cRunProperties.strike;
} else if (tag === 'mark') {
delete cRunProperties.highlight;
delete cRunProperties.color;
} else if (tag === 'ul' || tag === 'ol') {
list_state.pop();
if (list_state.length === 0) cParagraphProperties = {};
} else if (tag === 'code') {
delete cRunProperties.style;
}
},
onend() {
doc.addSection({
children: paragraphs,
});
},
},
{ decodeEntities: true },
);
// For multiline code blocks
html = html.replace(/\n/g, '<br>');
parser.write(html);
parser.end();
var prepXml = doc.documentWrapper.document.body.prepForXml({});
var filteredXml = prepXml['w:body'].filter(e => {
return Object.keys(e)[0] === 'w:p';
});
var dataXml = xml(filteredXml);
dataXml = dataXml.replace(/w:numId w:val="{2-0}"/g, 'w:numId w:val="2"'); // Replace numbering to have correct value
return dataXml;
}
module.exports = html2ooxml;
function getHighlightColor(hexColor) {
// <xsd:simpleType name="ST_HighlightColor">
// <xsd:restriction base="xsd:string">
// <xsd:enumeration value="yellow"/>
// <xsd:enumeration value="green"/>
// <xsd:enumeration value="cyan"/>
// <xsd:enumeration value="magenta"/>
// <xsd:enumeration value="blue"/>
// <xsd:enumeration value="red"/>
// <xsd:enumeration value="darkBlue"/>
// <xsd:enumeration value="darkCyan"/>
// <xsd:enumeration value="darkGreen"/>
// <xsd:enumeration value="darkMagenta"/>
// <xsd:enumeration value="darkRed"/>
// <xsd:enumeration value="darkYellow"/>
// <xsd:enumeration value="darkGray"/>
// <xsd:enumeration value="lightGray"/>
// <xsd:enumeration value="black"/>
// <xsd:enumeration value="white"/>
// <xsd:enumeration value="none"/>
// </xsd:restriction>
// </xsd:simpleType>
var colors = {
'#ffff25': 'yellow',
'#00ff41': 'green',
'#00ffff': 'cyan',
'#ff00f9': 'magenta',
'#0005fd': 'blue',
'#ff0000': 'red',
'#000177': 'darkBlue',
'#00807a': 'darkCyan',
'#008021': 'darkGreen',
'#8e0075': 'darkMagenta',
'#8f0000': 'darkRed',
'#817d0c': 'darkYellow',
'#807d78': 'darkGray',
'#c4c1bb': 'lightGray',
'#000000': 'black',
};
return colors[hexColor] || 'yellow';
}
function getTextColor(color) {
var regex = /^#[0-9a-fA-F]{6}$/;
if (regex.test(color)) return color.substring(1, 7);
return '000000';
}
|