Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Making it so that pandoc doesn't have to be installed on system. #17

Merged
merged 1 commit into from
Jan 4, 2018

Conversation

elsonrodriguez
Copy link
Contributor

This addresses a similar issue to: https://github.com/bebraw/pypandoc/pull/71/files

@@ -4,6 +4,9 @@
try:
import pypandoc
long_description = pypandoc.convert('README.md', 'rst')
except OSError:
# Stolen from pypandoc: if pandoc is not installed, fallback to using raw contents
long_description = open('README.md').read()
except ImportError:
long_description = None
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

can you update this case as well?

@fmoo fmoo merged commit ea15909 into fmoo:master Jan 4, 2018
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants