download_markdown
Convert webpages to markdown files by providing a URL, with options to save in a specified subdirectory and generate date-stamped filenames automatically.
Instructions
Download a webpage as markdown using r.jina.ai
Input Schema
Name | Required | Description | Default |
---|---|---|---|
subdirectory | No | Optional subdirectory to save the file in | |
url | Yes | URL of the webpage to download |
Input Schema (JSON Schema)
{
"properties": {
"subdirectory": {
"description": "Optional subdirectory to save the file in",
"type": "string"
},
"url": {
"description": "URL of the webpage to download",
"type": "string"
}
},
"required": [
"url"
],
"type": "object"
}