Skip to content

Commit

Permalink
{fabfile,setup}.py: Use vanilla markdown for rst files.
Browse files Browse the repository at this point in the history
Signed-off-by: Rogério Brito <[email protected]>
  • Loading branch information
Rogério Brito committed Jan 30, 2016
1 parent 0a81422 commit 146ff27
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion fabfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

from fabric.api import (env, local, task)

MD2RST='pandoc --from=markdown_github --to=rst --output=README.rst README.md'
MD2RST='pandoc --from=markdown --to=rst --output=README.rst README.md'

if not os.path.exists('README.rst'):
local(MD2RST)
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ def read_file(filename, alt=None):
long_description = read_file(
'README.rst',
'Generate README.rst from README.md via pandoc!\n\nExample: '
'pandoc --from=markdown_github --to=rst --output=README.rst README.md'
'pandoc --from=markdown --to=rst --output=README.rst README.md'
)
requirements = read_file('requirements.txt')
dev_requirements = read_file('requirements-dev.txt')
Expand Down

0 comments on commit 146ff27

Please sign in to comment.