mirror of
https://github.com/johannesjo/super-productivity.git
synced 2026-01-24 03:06:16 +00:00
- 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
18 lines
328 B
HTML
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>
|