• Add JSON import/export functionality to presentations list • Fix HTML sanitizer to allow style tags in layout templates • Add comprehensive SVG attributes for Mermaid diagram markers • Create LLM prompt generator for presentation JSON format • Add sample presentation showcasing SlideShare features • Clean up diagram-slide layout template 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
16 lines
418 B
HTML
16 lines
418 B
HTML
<div class="slide layout-diagram-slide">
|
|
<h1 class="slot title-slot"
|
|
data-slot="title"
|
|
data-type="title"
|
|
data-placeholder="Diagram Title"
|
|
data-required>
|
|
{{title}}
|
|
</h1>
|
|
|
|
<div class="slot diagram-content"
|
|
data-slot="diagram"
|
|
data-type="diagram"
|
|
data-placeholder="Enter Mermaid diagram syntax here..."
|
|
data-multiline="true">{{diagram}}</div>
|
|
|
|
</div> |