Spaces:
Sleeping
Sleeping
File size: 832 Bytes
43370b3 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 | // Default content seeded into a brand-new deck (server-side, in onLoadDocument) so
// clients never race to seed the same document.
export const DEFAULT_DECK = `---
marp: true
theme: default
paginate: true
---
# marp-share
Collaborative **Marp** editing — *Overleaf + Google Slides for Markdown*.
Open this page in a second window to see **real-time** editing. ✍️
---
## How it works
- Type Markdown on the **left** — everyone sees it instantly
- Slides render **live** on the right
- Coloured cursors show who is editing where
---
## Code & math render too
\`\`\`python
def greet(name: str) -> str:
return f"Hello, {name}!"
\`\`\`
$$ e^{i\\pi} + 1 = 0 $$
---
## Roadmap
1. ✅ Real-time multi-cursor (Yjs)
2. Git-backed persistence + history
3. Sign in with Hugging Face
4. Comments + PDF / PPTX export
`
|