Closed hedleyroos closed 8 years ago
Not true, the __init__.py
file imports all of core.py
, making it available via the package name alone.
Yup, __init.py__
has:
from core import *
This can be closed.
pandoc.PANDOC_PATH = '/usr/bin/pandoc'
Didn't worked here, but
pandoc.core.PANDOC_PATH = '/usr/bin/pandoc'
yes.
So I confirm the error on Python2. (Thanks for the tip @hedleyroos )
You should just use pypandoc, as this project looks to no longer be maintained.
Good point...
@msabramo I hadn't seen this one, thanks!
The readme says
pandoc.PANDOC_PATH = '/usr/bin/pandoc'
but it should bepandoc.core.PANDOC_PATH = '/usr/bin/pandoc'
.