Google Docs

GOOGLEDOCS_UPDATE_DOCUMENT_MARKDOWN

Replaces the entire content of an existing Google Docs document with new Markdown text; requires edit permissions for the document.

Remote googledocs

Other tools also called GOOGLEDOCS_UPDATE_DOCUMENT_MARKDOWN? See providers with this name

Input Schema


            {
  "type": "object",
  "properties": {
    "document_id": {
      "type": "string",
      "title": "Document Id",
      "description": "Identifier of the Google Docs document to update, found in the document's URL."
    },
    "new_markdown_text": {
      "type": "string",
      "title": "New Markdown Text",
      "examples": [
        "# Document Title\n\nThis is a paragraph with **bold** and *italic* text.\n\n- Unordered list item 1\n- Unordered list item 2\n\n1. Ordered list item 1\n2. Ordered list item 2\n\nAn image: ![Alt text for image](https://www.example.com/image.png)",
        "## Advanced Markdown\n\n\n# Example Python code\ndef greet(name):\n    print(f'Hello, {name}!')\ngreet('World')\n\n\n| Column A | Column B |\n|----------|----------|\n|   Data 1 |   Data 2 |\n|   Data 3 |   Data 4 |\n\n> This is a blockquote."
      ],
      "description": "Markdown content that will replace the document's entire existing content. Supports standard Markdown features."
    }
  }
}