Google Super
GOOGLESUPER_CREATE_DOCUMENT_MARKDOWN
Creates a new Google Docs document, optionally initializing it with a title and content provided as Markdown text.
Remote googlesuper
Other tools also called GOOGLESUPER_CREATE_DOCUMENT_MARKDOWN?
See providers with this name
Input Schema
{
"type": "object",
"properties": {
"title": {
"type": "string",
"title": "Title",
"examples": [
"Meeting Notes Q3",
"Project Alpha Proposal",
"My New Story Draft"
],
"description": "The title for the new Google Docs document."
},
"markdown_text": {
"type": "string",
"title": "Markdown Text",
"description": "The initial content for the document, formatted as Markdown. Supports various Markdown elements including headings, lists (nested lists are not supported), tables, images (via publicly accessible URLs), blockquotes, code blocks, and text formatting (bold, italic, etc.). If an empty string is provided, the document will be created with only the title. Image URL constraints: URLs must be less than or equal to 2KB in length. Supported image formats: JPEG, PNG, GIF (SVG is not supported)."
}
}
}