Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mrded/pandoc-as-a-service
If you need to convert text from one markup format into another, pandoc-as-a-service is your swiss-army knife.
https://github.com/mrded/pandoc-as-a-service
Last synced: 5 days ago
JSON representation
If you need to convert text from one markup format into another, pandoc-as-a-service is your swiss-army knife.
- Host: GitHub
- URL: https://github.com/mrded/pandoc-as-a-service
- Owner: mrded
- License: gpl-2.0
- Created: 2015-06-23T15:17:14.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2022-06-22T13:58:01.000Z (over 2 years ago)
- Last Synced: 2024-08-01T12:32:38.558Z (3 months ago)
- Language: JavaScript
- Homepage:
- Size: 33.2 KB
- Stars: 66
- Watchers: 5
- Forks: 16
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-starred - mrded/pandoc-as-a-service - If you need to convert text from one markup format into another, pandoc-as-a-service is your swiss-army knife. (others)
README
# Pandoc As A Service
If you need to convert text from one markup format into another, pandoc is your swiss-army knife.## Overview
Basically I wrapped [Pandoc](http://pandoc.org/) in a web service.
## Installation
`docker run -p 8080:8080 mrded/pandoc-as-a-service`
The server will be available on `http://localhost:8080`
## Conversion API
**Pandoc As A Service** has a simple to use HTTP API:
POST a text to http://localhost/:format
~~~ bash
curl -H "Content-Type: text/markdown" -X POST -d "# hello" http://localhost/html
~~~