Metadata-Version: 2.4
Name: fiduswriter-pandoc
Version: 4.1.1
Summary: A Fidus Writer plugin to connect to Pandoc.
Author-email: Johannes Wilm <johannes@fiduswriter.org>
License-Expression: AGPL-3.0-or-later
Project-URL: repository, https://github.com/fiduswriter/fiduswriter-pandoc
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Framework :: Django :: 6.0
Classifier: Intended Audience :: Developers
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: license-file

# FidusWriter-Pandoc

FidusWriter-Pandoc is a Fidus writer plugin to connect a Fidus Writer instance
with Pandoc for document conversion.

**NOTE:** This runs pandoc as a wasm executable in the user's browser. For Fidus Writer 4.0 there was also the option to run it on the server (which required fewer resources by users and their browsers but more by the server). Due to resource restraints, running on the server is no longer supported. Please contact us if you want to revive this mode.

## Installation

1. Install Fidus Writer with the correct version of the plugin like this:

```
pip install fiduswriter[pandoc]
```

2. Add "pandoc" to your INSTALLED_APPS setting in the configuration.py file
   like this::

```python
INSTALLED_APPS += (
    ...
    'pandoc',
)
```

3. Create the needed JavaScript files by running this::

```
python manage.py transpile
```

4. (Re)start your Fidus Writer server.
