Hi,
I wanted to learn more markmin.
I have the examples from the documentation, markmin2html and markmin2latex
work fine:
>>> from markmin2html import markmin2html as mh
>>> m='hello **world**'
>>> print mh(m)
<p>hello <b>world</b></p>
>>> from markmin2latex import markmin2latex as ml
>>> print ml(m)
\documentclass[12pt]{article}
*... shortened...*
\newpage
hello {\bf world}
\end{document}
But markmin2pdf answered with an error
>>> from markmin2pdf import markmin2pdf as mp
>>> mp(m)
Traceback (most recent call last):
File "<pyshell#25>", line 1, in <module>
mp(m)
File "C:\Python27\lib\site-packages\markmin2pdf.py", line 93, in
markmin2pdf
return latex2pdf(markmin2latex(text,image_mapper=image_mapper,
extra=extra))
File "C:\Python27\lib\site-packages\markmin2pdf.py", line 74, in latex2pdf
stderr=subprocess.PIPE)
File "C:\Python27\lib\subprocess.py", line 486, in call
return Popen(*popenargs, **kwargs).wait()
File "C:\Python27\lib\subprocess.py", line 672, in __init__
errread, errwrite)
File "C:\Python27\lib\subprocess.py", line 882, in _execute_child
startupinfo)
WindowsError: [Error 2] Das System kann die angegebene Datei nicht finden
*(Means: System can't find the file)*
>>>
Any hints?
Regards, Martin