[PR #88] [CLOSED] [Plugin] URL to Markdown #597

Closed
opened 2026-02-22 17:33:40 -05:00 by yindo · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/langgenius/dify-plugins/pull/88
Author: @Waicy
Created: 3/6/2025
Status: Closed

Base: mainHead: url-to-markdown


📝 Commits (2)

  • 7b4cb85 feat: add url-to-markdown plugin
  • f2221e1 feat: add url-to-markdown plugin package

📊 Changes

17 files changed (+755 additions, -0 deletions)

View changed files

plugins/url-to-markdown/.difyignore (+178 -0)
plugins/url-to-markdown/.env.example (+4 -0)
plugins/url-to-markdown/.gitignore (+171 -0)
plugins/url-to-markdown/GUIDE.md (+117 -0)
plugins/url-to-markdown/PRIVACY.md (+26 -0)
plugins/url-to-markdown/README.md (+49 -0)
plugins/url-to-markdown/_assets/icon.svg (+6 -0)
plugins/url-to-markdown/main.py (+6 -0)
plugins/url-to-markdown/manifest.yaml (+45 -0)
plugins/url-to-markdown/provider/url-to-markdown.yaml (+17 -0)
plugins/url-to-markdown/provider/url_to_markdown.py (+29 -0)
plugins/url-to-markdown/python (+0 -0)
plugins/url-to-markdown/requirements.txt (+7 -0)
plugins/url-to-markdown/tools/__init__.py (+1 -0)
plugins/url-to-markdown/tools/url-to-markdown.yaml (+30 -0)
plugins/url-to-markdown/tools/url_to_markdown.py (+69 -0)
siwei/url-to-markdown/url-to-markdown.difypkg (+0 -0)

📄 Description

Plugin Submission Form

1. Submission Type

  • ✓ New plugin submission
  • Version update for existing plugin

2. Description

This is a web content crawling tool that can intelligently convert any webpage content into clean Markdown format.

3. Checklist

  • ✓ I have read and followed the Publish to Dify Marketplace guidelines
  • ✓ I have read and comply with the Plugin Developer Agreement
  • ✓ I confirm my plugin works properly on both Dify Community Edition and Cloud Version
  • ✓ I confirm my plugin has been thoroughly tested for completeness and functionality
  • ✓ My plugin brings new value to Dify

4. Documentation Checklist

Please confirm that your plugin README includes all necessary information:

  • ✓ Step-by-step setup instructions
  • ✓ Detailed usage instructions
  • ✓ All required APIs and credentials are clearly listed
  • ✓ Connection requirements and configuration details

5. Privacy Protection Information

Based on Dify Plugin Privacy Protection Guidelines:

Data Collection

This plugin only collects the following data:

  • URL: User provided webpage address, only used for content crawling
  • Web content: Temporary crawling, no storage

No personal identifiable information (PII) is collected. All data processing is done locally and will not be transmitted to third parties.

Privacy Policy

  • ✓ I confirm that I have prepared and included a privacy policy in my plugin package based on the Plugin Privacy Protection Guidelines

Privacy policy file path: PRIVACY.md
Key contents of privacy policy:

  • Clear statement of data collection scope
  • Detailed explanation of data usage purpose
  • Commitment to not share data with third parties
  • Description of data security measures
  • Statement of user rights
  • Clear contact information

🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/langgenius/dify-plugins/pull/88 **Author:** [@Waicy](https://github.com/Waicy) **Created:** 3/6/2025 **Status:** ❌ Closed **Base:** `main` ← **Head:** `url-to-markdown` --- ### 📝 Commits (2) - [`7b4cb85`](https://github.com/langgenius/dify-plugins/commit/7b4cb852e16f9eff41a8a4ab1a47bd6690e3957a) feat: add url-to-markdown plugin - [`f2221e1`](https://github.com/langgenius/dify-plugins/commit/f2221e125386cd33ebdfddb8dc8bc485485e09ab) feat: add url-to-markdown plugin package ### 📊 Changes **17 files changed** (+755 additions, -0 deletions) <details> <summary>View changed files</summary> ➕ `plugins/url-to-markdown/.difyignore` (+178 -0) ➕ `plugins/url-to-markdown/.env.example` (+4 -0) ➕ `plugins/url-to-markdown/.gitignore` (+171 -0) ➕ `plugins/url-to-markdown/GUIDE.md` (+117 -0) ➕ `plugins/url-to-markdown/PRIVACY.md` (+26 -0) ➕ `plugins/url-to-markdown/README.md` (+49 -0) ➕ `plugins/url-to-markdown/_assets/icon.svg` (+6 -0) ➕ `plugins/url-to-markdown/main.py` (+6 -0) ➕ `plugins/url-to-markdown/manifest.yaml` (+45 -0) ➕ `plugins/url-to-markdown/provider/url-to-markdown.yaml` (+17 -0) ➕ `plugins/url-to-markdown/provider/url_to_markdown.py` (+29 -0) ➕ `plugins/url-to-markdown/python` (+0 -0) ➕ `plugins/url-to-markdown/requirements.txt` (+7 -0) ➕ `plugins/url-to-markdown/tools/__init__.py` (+1 -0) ➕ `plugins/url-to-markdown/tools/url-to-markdown.yaml` (+30 -0) ➕ `plugins/url-to-markdown/tools/url_to_markdown.py` (+69 -0) ➕ `siwei/url-to-markdown/url-to-markdown.difypkg` (+0 -0) </details> ### 📄 Description # Plugin Submission Form ## 1. Submission Type - ✓ New plugin submission - [ ] Version update for existing plugin ## 2. Description This is a web content crawling tool that can intelligently convert any webpage content into clean Markdown format. ## 3. Checklist - ✓ I have read and followed the Publish to Dify Marketplace guidelines - ✓ I have read and comply with the Plugin Developer Agreement - ✓ I confirm my plugin works properly on both Dify Community Edition and Cloud Version - ✓ I confirm my plugin has been thoroughly tested for completeness and functionality - ✓ My plugin brings new value to Dify ## 4. Documentation Checklist Please confirm that your plugin README includes all necessary information: - ✓ Step-by-step setup instructions - ✓ Detailed usage instructions - ✓ All required APIs and credentials are clearly listed - ✓ Connection requirements and configuration details ## 5. Privacy Protection Information Based on Dify Plugin Privacy Protection [Guidelines](https://docs.dify.ai/plugins/publish-plugins/publish-to-dify-marketplace/plugin-privacy-protection-guidelines): ### Data Collection This plugin only collects the following data: - URL: User provided webpage address, only used for content crawling - Web content: Temporary crawling, no storage No personal identifiable information (PII) is collected. All data processing is done locally and will not be transmitted to third parties. ### Privacy Policy - ✓ I confirm that I have prepared and included a privacy policy in my plugin package based on the Plugin Privacy Protection Guidelines Privacy policy file path: `PRIVACY.md` Key contents of privacy policy: - Clear statement of data collection scope - Detailed explanation of data usage purpose - Commitment to not share data with third parties - Description of data security measures - Statement of user rights - Clear contact information --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
yindo added the pull-request label 2026-02-22 17:33:40 -05:00
yindo closed this issue 2026-02-22 17:33:43 -05:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: langgenius/dify-plugins#597