A tiny static web app that converts Markdown into clipboard HTML formatted for Microsoft Loop. Paste markdown on the left, click Copy as Loop HTML, and paste into Loop — headings, lists, task-list checkboxes, tables, and links come through clean.
Live: https://jamesburnside.github.io/markdown-to-loop/
Inspired by trsdn/md2loop, a Mac-only Swift utility. This is a browser version — no install, works on any platform.
- Markdown → HTML via marked
- Post-processed for Loop: strips
class/id/styleattributes, converts task-list<input type="checkbox">to Unicode glyphs (☑ / ☐), and cleans up table markup - Writes both
text/htmlandtext/plainto the clipboard vianavigator.clipboard.write()with aClipboardItem
No build step. Open index.html in a browser, or serve the folder:
python -m http.server 8000
# then visit http://localhost:8000GitHub Pages, set to deploy from the main branch root.