export_book
Export BookStack wiki books to HTML, PDF, plaintext, or markdown formats for sharing, archiving, or offline use by specifying the book ID and desired format.
Instructions
Export a book in various formats
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| format | Yes | Export format | |
| id | Yes | Book ID |
Input Schema (JSON Schema)
{
"properties": {
"format": {
"description": "Export format",
"enum": [
"html",
"pdf",
"plaintext",
"markdown"
],
"type": "string"
},
"id": {
"description": "Book ID",
"type": "number"
}
},
"required": [
"id",
"format"
],
"type": "object"
}