A simple web service to convert Markdown content to EPUB format
This service provides a REST API for converting Markdown to EPUB format.
POST /convert - Convert Markdown to EPUBGET /status - Check API health statusGET /openapi.yaml - OpenAPI specificationOpenAPI Specification API Status
curl -X POST http://localhost:8088/convert \
-H "Content-Type: application/json" \
-d '{
"markdown": "# My Book\n\nThis is chapter one...",
"title": "My First Book",
"author": "John Doe"
}' \
--output book.epub