{"id":22579279,"url":"https://github.com/tinyfunction/markdump","last_synced_at":"2026-02-24T08:04:05.596Z","repository":{"id":266215070,"uuid":"897720144","full_name":"TinyFunction/MarkDump","owner":"TinyFunction","description":"MarkDump is a VS Code extension that automatically detects, downloads, stores and replaces image links in Markdown documents.","archived":false,"fork":false,"pushed_at":"2024-12-05T11:27:38.000Z","size":84,"stargazers_count":2,"open_issues_count":2,"forks_count":1,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-04-15T05:45:23.754Z","etag":null,"topics":["downloader","markdown","markdown-image"],"latest_commit_sha":null,"homepage":"https://marketplace.visualstudio.com/items?itemName=TinyFunction.markdump","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/TinyFunction.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"license","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-12-03T05:48:38.000Z","updated_at":"2024-12-05T11:27:42.000Z","dependencies_parsed_at":"2024-12-08T11:31:57.459Z","dependency_job_id":null,"html_url":"https://github.com/TinyFunction/MarkDump","commit_stats":null,"previous_names":["tinyfunction/markdump"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/TinyFunction/MarkDump","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TinyFunction%2FMarkDump","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TinyFunction%2FMarkDump/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TinyFunction%2FMarkDump/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TinyFunction%2FMarkDump/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/TinyFunction","download_url":"https://codeload.github.com/TinyFunction/MarkDump/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TinyFunction%2FMarkDump/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29775847,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-24T04:54:30.205Z","status":"ssl_error","status_checked_at":"2026-02-24T04:53:58.628Z","response_time":75,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["downloader","markdown","markdown-image"],"created_at":"2024-12-08T05:06:48.471Z","updated_at":"2026-02-24T08:04:05.582Z","avatar_url":"https://github.com/TinyFunction.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# MarkDump\n\n![logo](./images/icon.png)\n\n[English](./README.md) | [中文](./README_CN.md)\n\n**MarkDump** is a handy VS Code extension that automatically detects image links in Markdown documents, downloads them, and stores them in an `img` folder within the document's directory. It also renames the images sequentially (e.g., `01.png`, `02.png`, `03.png`) and replaces the original links in the Markdown file with the local paths.\n\n## Features\n- Automatically detects image links in Markdown documents (supports HTTP/HTTPS links).\n- Downloads images to an `img` folder in the document's directory.\n- Renames the images sequentially (e.g., `01.png`, `02.jpg`).\n- Replaces the Markdown document's image links with local paths.\n\n---\n\n## Installation\n1. Open VS Code.\n2. Go to the Extensions Marketplace, search for **MarkDump**, and click *Install*.\n3. Once installed, you can start using the extension in your Markdown files.\n\n---\n\n## How to Use\n\n### Prerequisites\n- Ensure you have opened a folder as a workspace in VS Code.\n- The Markdown file must be saved on disk.\n\n### Steps\n1. Open a Markdown file.\n2. Make sure the file contains image links, for example:\n   ```markdown\n   ![Example Image](https://example.com/image1.png)\n   ![Another Image](https://example.com/image2.jpg)\n   ```\n3. Press `Ctrl+Shift+P` (Windows/Linux) or `Cmd+Shift+P` (macOS) to open the Command Palette.\n4. Type and select `MarkDump: Download Images and Update Links`.\n5. The extension will:\n   - Download images to an `img` folder in the document's directory.\n   - Rename the images sequentially, e.g., `img/01.png`, `img/02.jpg`.\n   - Replace the image links in the Markdown document with the local paths, for example:\n     ```markdown\n     ![Example Image](img/01.png)\n     ![Another Image](img/02.jpg)\n     ```\n6. Save the file to complete the process.\n\n---\n\n## Example Output\n### Original Markdown\n```markdown\n![Example Image](https://example.com/image1.png)\n![Another Image](https://example.com/image2.jpg)\n```\n\n### After Running the Extension\n- File structure:\n  ```\n  my-folder/\n  ├── my-markdown-file.md\n  ├── img/\n      ├── 01.png\n      ├── 02.jpg\n  ```\n- Updated Markdown:\n  ```markdown\n  ![Example Image](img/01.png)\n  ![Another Image](img/02.jpg)\n  ```\n\n---\n\n## Notes\n1. The extension only supports image links using HTTP or HTTPS protocols.\n2. Ensure you have a stable internet connection when downloading images.\n3. If an image link is invalid or fails to download, the extension will skip it and log an error in the console.\n\n---\n\n## Developer Information\nIf you have any questions or suggestions, feel free to submit an issue or pull request on the [GitHub project page](https://github.com/TinyFunction/MarkDump).\n\n**MarkDump** — making Markdown image management easier and more efficient! 🎉\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftinyfunction%2Fmarkdump","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftinyfunction%2Fmarkdump","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftinyfunction%2Fmarkdump/lists"}