Tags: JessicaTegner/pypandoc
Tags
Version 1.3.0 * Add possibility to use .lua custom writers as output format (thanks to @snay, #109) * pypandoc now also accepts URls (http+https) where it allows paths (#108/#115, thanks to @dufferzafar for reporting this) * now downloads pandoc 1.18 (or includes that pandoc version in the prebuild wheels) (#112/#113, thanks to @TomAugspurger for reporting this) Under the hood, we now also do CI tests on windows (via appveyor) and do PyPI uploads from the CI services (see #116/#117).
Version 1.2.0 This version includes a new API: instead of using `convert(file_or_string)` use `convert_file(file_name)` or `convert_text(string)`. This change was nesessary because it wasn't clear in all cases whether an input was meant to be a file or a string. This could lead to wrong output. This also includes a convenience function to download pandoc itself (on intel based systems): `from pypandoc.pandoc_download import download_pandoc; download_pandoc()` Also included are fixes for reported bugs. Thanks to all contributors! Included PRs: * Merge pull request #104 from tkob/supply-home Ensure $HOME is set before calling `pandoc --version` * Merge pull request #101 from janschulz/pdf Fix for pdf conversion * Merge pull request #102 from janschulz/readme Fix conda badge * Merge pull request #96 from janschulz/new_main_api New main api: convert_file and convert_text * Merge pull request #99 from gwgundersen/master Added section on specifying the location of pandoc binaries. * Merge pull request #95 from janschulz/update_pandoc Bugfix for search path and update to newer pandoc version * Merge pull request #92 from JanSchulz/overhaul_pandoc_handling overhaul pandoc downloads * Merge pull request #93 from pycontribs/master Fixed installation and execution of tests on Mac OS X. * Merge pull request #89 from JanSchulz/release_checklist Add a release checklist