Add semantic block parser and PDF export
Some checks are pending
Build / build (push) Waiting to run

This commit is contained in:
Neeldhara Misra 2026-06-25 12:35:40 +05:30
parent 632543db4d
commit 58310e1944
47 changed files with 3078 additions and 0 deletions

View file

@ -1,6 +1,7 @@
---
import { getCollection, render } from 'astro:content';
import CoralComments from '@/components/CoralComments.astro';
import InteractiveRuntime from '@/components/InteractiveRuntime.astro';
import DefaultLayout from '@/layouts/DefaultLayout.astro';
import { BlogPost } from '@/components/sections/blog-post';
import { ACTIVE_BLOG_SITE } from '@/blog-sites.js';
@ -26,5 +27,6 @@ const coralStoryURL = new URL(`/${postSlug}/`, ACTIVE_BLOG_SITE.url).toString();
<Content />
</BlogPost>
<InteractiveRuntime />
<CoralComments storyID={coralStoryID} storyURL={coralStoryURL} />
</DefaultLayout>