export_chapter
Export BookStack wiki chapters to HTML, PDF, plaintext, or markdown formats for content sharing and documentation purposes.
Instructions
Export a chapter in various formats
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| format | Yes | Export format | |
| id | Yes | Chapter ID |
Input Schema (JSON Schema)
{
"properties": {
"format": {
"description": "Export format",
"enum": [
"html",
"pdf",
"plaintext",
"markdown"
],
"type": "string"
},
"id": {
"description": "Chapter ID",
"type": "number"
}
},
"required": [
"id",
"format"
],
"type": "object"
}