Open
Description
with:
[WARNING] Could not fetch resource ./plantuml/951024a08973cc301dbab7d20b52fd3a.svg: PandocResourceNotFound "./plantuml/951024a08973cc301dbab7d20b52fd3a.svg"
Steps to reproduce:
- string with html_content:
html_content = '''
<h2>foobar</h2><p><img src="./plantuml/951024a08973cc301dbab7d20b52fd3a.svg" class="uml" alt="uml diagram" title="" /></p>
'''
- convert with
output = pypandoc.convert_text(
html_content,
to='docx',
format='html',
outputfile= 'huhu.docx',
)
produces docx w/o image even if I provide kwarg cworkdir
. Conversion with pandoc on cmd line works.