export_page
Export BookStack wiki pages in HTML, PDF, plaintext, or markdown format using the page ID to convert and download content for offline use or sharing.
Instructions
Export a page in various formats
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| format | Yes | Export format | |
| id | Yes | Page ID |
Input Schema (JSON Schema)
{
"properties": {
"format": {
"description": "Export format",
"enum": [
"html",
"pdf",
"plaintext",
"markdown"
],
"type": "string"
},
"id": {
"description": "Page ID",
"type": "number"
}
},
"required": [
"id",
"format"
],
"type": "object"
}