markdown2pdf
Convert Markdown text into high-quality PDFs with LaTeX rendering. Include a title and optional date for professional document creation. Payments are processed via the Lightning Network, eliminating the need for sign-ups or credit cards.
Instructions
Convert markdown to PDF, and pay with Lightning
Input Schema
Name | Required | Description | Default |
---|---|---|---|
date | No | Document date (YYYY-MM-DD) | |
text_body | Yes | Markdown text to convert | |
title | Yes | Document title |
Input Schema (JSON Schema)
{
"properties": {
"date": {
"description": "Document date (YYYY-MM-DD)",
"type": "string"
},
"text_body": {
"description": "Markdown text to convert",
"type": "string"
},
"title": {
"description": "Document title",
"type": "string"
}
},
"required": [
"text_body",
"title"
],
"type": "object"
}