markdownify
Convert any webpage into clean, formatted markdown with automatic extraction. Simplifies web content transformation for easy integration into markdown-based workflows.
Instructions
Convert a webpage into clean, formatted markdown.
Args:
website_url: URL of the webpage to convert
Returns:
Dictionary containing the markdown result
Input Schema
Name | Required | Description | Default |
---|---|---|---|
website_url | Yes |
Input Schema (JSON Schema)
{
"properties": {
"website_url": {
"title": "Website Url",
"type": "string"
}
},
"required": [
"website_url"
],
"title": "markdownifyArguments",
"type": "object"
}