We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6f22028 commit 747b6f7Copy full SHA for 747b6f7
1 file changed
app/playground/page.tsx
@@ -310,6 +310,10 @@ function generatePreviewHTML(doc: OSFDocument): string {
310
html += `<h2 class="text-2xl font-bold mb-4">${block.title || 'Slide'}</h2>`;
311
if (block.content) {
312
html += renderSlideContentHTML(block.content);
313
+ } else if (block.bullets && block.bullets.length > 0) {
314
+ html += '<ul class="list-disc pl-6 my-2">';
315
+ html += block.bullets.map((item) => `<li>${escapeHTML(item)}</li>`).join('');
316
+ html += '</ul>';
317
}
318
html += '</div>';
319
break;
0 commit comments