I amd using pandoc to convert a standalone html (with not external dependency), with all required css and js merged in html itself. HTML has few svg graphs generated via javascript library
The said html file, when opened in browser renders fine, but when converted to docx, svg images are missing from docx file.
command used to convert, looks like
pandoc ./something.html -s -o test1.docx
What I suspect is that it is converting file before javascript could even render those images.
Appreciate help