Hallo zusammen,
ich benutze die oben genannte library um ein docx zu erstellen https://github.com/evidenceprime/html-docx-js
Außerdem wird das mithilfe dieser library heruntergeladen https://github.com/rndme/download
Allerdings haben die Zeilen der Tabelle die dabei heraus kommt eine unnötig große Höhehtml-seminar.de/woltlab/attachment/1547/
Wie man sieht ist die Zeile doppelt so hoch wie der Text.
Hier mein Code:
HTML
<!DOCTYPE html>
<html lang="en">
<head>
<script src="download.js"></script>
<script src="html-docx.js"></script>
</head>
<body>
<button onclick="word()">Word</button>
<script>
function word(){
doc = '<!doctype html><html><body><table style="border-collapse:collapse;"<tr style="max-height:0.5em"><td style ="width:15em; border: 1px solid;">Hallo</td><td style ="width:15em; border: 1px solid;">Test</td></tr></table></body></html>';
var converted = htmlDocx.asBlob(doc, {orientation: 'portrait'});
download(converted, "test.docx", "application/vnd.openxmlformats-officedocument.wordprocessingml.document");
}
</script>
</body>
</html>
Alles anzeigen
max-height hat auch keinen Einfluss darauf.
Hat jemand eine Idee wie man das ändern kann?