export_document
Export document content as plain markdown text for external use, sharing, or processing in other applications without additional formatting.
Instructions
Exports a document as plain markdown text.
Use this tool when you need to:
- Get clean markdown content without formatting
- Extract document content for external use
- Process document content in another application
- Share document content outside Outline
Args:
document_id: The document ID to export
Returns:
Document content in markdown format without additional formatting
Input Schema
Name | Required | Description | Default |
---|---|---|---|
document_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"document_id": {
"title": "Document Id",
"type": "string"
}
},
"required": [
"document_id"
],
"title": "export_documentArguments",
"type": "object"
}