When I'm trying to convert any html with MathML to docx with using docx4j library for example:
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8"></meta>
<title>Personal list export template</title>
<style>
body {
font-family: Arial, sans-serif;
color: #666;
padding: 20px;
}
.document {
display: block;
padding-bottom: 10px;
margin-bottom: 20px;
}
.header, .note {
align-items: start;
font-size: 1rem;
}
.header strong, .note strong {
font-size: 1.2em;
color: #333;
font-weight: bold;
margin-bottom: 5px;
}
.list-item {
border: none;
padding: 0; ...