
MD Files Connector — Stop Losing Track of Your Markdown Docs
The Problem Your project has a CONTRIBUTING.md , an ARCHITECTURE.md , a docs/API.md . You wrote them. Then you forgot about them. Nobody links to them. Nobody reads them. They just exist — invisible. The Fix MD Files Connector is a CLI tool + GitHub Action that scans your project for every .md file and checks which ones are actually linked from your root README.md . Files that aren't linked? Isolated. Nobody will find them. bash python md_connector.py . That's it. You get a rich terminal dashboard: 📁 Total MD files 7 ✅ Linked in README 5 ⚠️ Isolated 2 📊 Coverage 71.4% And an interactive fix menu to auto-link the isolated ones into your README — no manual editing needed. Run it in CI Drop this into .github/workflows/md-check.yml : `yaml name: Run MD Files Connector uses: Maneesh-Relanto/MD-Files-Connector@v1.0.0 with: fail-on-isolated: "true" Now every PR that ships an unlinked .md file fails the check . Docs stay honest automatically. Key facts Zero config — one Python file, one comman
Continue reading on Dev.to Python
Opens in a new tab



