- Implement safe markdown processing with marked and DOMPurify - Add markdown-slide layout template with dedicated markdown slots - Support auto-detection of markdown content in text slots - Include comprehensive markdown styling (lists, headers, code, quotes, tables) - Maintain security with HTML sanitization and safe element filtering - Add markdown documentation to theme creation guidelines 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
8 lines
306 B
HTML
8 lines
306 B
HTML
<div class="fade-in layout-content-slide">
|
|
<h1 class="slot title-slot" data-slot="title" data-placeholder="Slide Title" data-required>
|
|
{{title}}
|
|
</h1>
|
|
<div class="slot content-area" data-slot="content" data-placeholder="Your content here..." data-multiline="true">
|
|
{{content}}
|
|
</div>
|
|
</div> |