convert_to_markdown
Transform DOCX files into Markdown format for simplified content structuring and compatibility with plain-text editors. Ideal for document conversion and streamlined text processing.
Instructions
Convert DOCX file to Markdown format
Input Schema
Name | Required | Description | Default |
---|---|---|---|
file_path | Yes | Path to the .docx file |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"file_path": {
"description": "Path to the .docx file",
"type": "string"
}
},
"required": [
"file_path"
],
"type": "object"
}