telegraph_create_page
Create a new Telegraph page by providing title and content in HTML or Markdown. Returns the page URL for sharing.
Instructions
Create a new Telegraph page. Returns a Page object including the URL of the created page.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| access_token | Yes | Access token of the Telegraph account | |
| title | Yes | Page title (1-256 characters) | |
| content | Yes | Page content - can be HTML string (e.g., "<p>Hello <b>world</b></p>"), Markdown string, or JSON array of Node objects | |
| format | No | Content format: "html" or "markdown" (default: "html") | html |
| author_name | No | Author name displayed below the title (0-128 characters) | |
| author_url | No | Profile link opened when users click on the author name (0-512 characters) | |
| return_content | No | If true, the content field will be returned in the Page object |