Lines Matching +refs:org +refs:odt +refs:format +refs:section

11 …[![Build Status](https://travis-ci.org/bebraw/pypandoc.svg?branch=master)](https://travis-ci.org/b…
14 … [![PyPI version](https://badge.fury.io/py/pypandoc.svg)](https://pypi.python.org/pypi/pypandoc/)
15 …[![conda version](https://anaconda.org/conda-forge/pypandoc/badges/version.svg)](https://anaconda.
16 …t Status](https://img.shields.io/pypi/status/pypandoc.svg)](https://pypi.python.org/pypi/pypandoc/)
17 …sion](https://img.shields.io/pypi/pyversions/pypandoc.svg)](https://pypi.python.org/pypi/pypandoc/)
20 Pypandoc provides a thin wrapper for [pandoc](https://pandoc.org), a universal
38 Prebuilt [wheels for Windows and Mac OS X](https://pypi.python.org/pypi/pypandoc/) include
42 … If you use Linux and have [your own wheelhouse](https://wheel.readthedocs.org/en/latest/#usage),
92 [here](https://pandoc.org/installing.html)
93 … - [FreeBSD with pkg:](https://www.freshports.org/textproc/hs-pandoc/) `pkg install hs-pandoc`
94 - Or see [Pandoc - Installing pandoc](https://pandoc.org/installing.html)
98 `PYPANDOC_PANDOC`. See the next section for more information.
124 # With an input file: it will infer the input format from the filename
127 # ...but you can overwrite the format via the `format` argument:
128 output = pypandoc.convert_file('somefile.txt', 'rst', format='md')
131 # define the input format:
132 output = pypandoc.convert_text('# some title', 'rst', format='md')
140 … convert to some output formats (e.g. odt, docx, epub, epub3, pdf). In that case `convert_*()` will
150 In addition to `format`, it is possible to pass `extra_args`.
156 'md', format='html',
161 'html', format='md',
167 [pandoc filters](https://pandoc.org/scripting.html).
175 format='md',
183 [official documentation](https://pandoc.org/MANUAL.html) for further details.
200 … [`subprocess.Popen`](https://docs.python.org/2/library/subprocess.html#subprocess.Popen) works.
218 …* See [pyandoc](https://pypi.python.org/pypi/pyandoc/) for an alternative implementation of a pand…
249 * [Florian Eßer](https://github.com/flesser) - Allow Markdown extensions in output format
250 … * [Philipp Wendler](https://github.com/PhilippWendler) - Allow Markdown extensions in input format