super-productivity/packages/plugin-dev/sync-md/index.html
Johannes Millan 7ff12d241c feat(sync-md): convert plugin to Solid.js with bidirectional sync
- Rewrite sync.md plugin using Solid.js for better performance
- Implement sophisticated bidirectional sync algorithm with conflict detection
- Add support for three sync modes: bidirectional, file-to-project, project-to-file
- Create comprehensive sync logic with checksum-based change tracking
- Add test script to validate sync functionality
- Maintain task hierarchy and handle deletions gracefully
2025-06-24 21:04:38 +02:00

18 lines
328 B
HTML

<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1.0"
/>
<title>Sync.md</title>
</head>
<body>
<div id="root"></div>
<script
type="module"
src="/src/index.tsx"
></script>
</body>
</html>