feat: update new image formatting in post
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful

This commit is contained in:
Damillora 2024-12-03 03:27:00 +07:00
parent 94758efa2b
commit 333f99b27c
3 changed files with 14 additions and 11 deletions

14
package-lock.json generated
View File

@ -8,7 +8,7 @@
"name": "@damillora/shallie",
"version": "1.0.0",
"dependencies": {
"@damillora/plachta": "^6.6.0",
"@damillora/plachta": "^6.7.0",
"@directus/sdk": "^18.0.0"
},
"devDependencies": {
@ -55,9 +55,9 @@
}
},
"node_modules/@damillora/plachta": {
"version": "6.6.0",
"resolved": "https://registry.npmjs.org/@damillora/plachta/-/plachta-6.6.0.tgz",
"integrity": "sha512-P8MWjHrcQPU1TKJEVQXxN7Wzl93NjAFBDzi6szSOfx3qTQ6GENIObdctU9Q5k4wRcZySguC8Hhw7ux2E9SCh1A==",
"version": "6.7.0",
"resolved": "https://registry.npmjs.org/@damillora/plachta/-/plachta-6.7.0.tgz",
"integrity": "sha512-Mkwz+8zUDl34/QdVF73YFnZbI50zIXYb0h2St2NAjAkZILGUgtlNuup0wftz7JyhwWUVLn1+1bwT727KC1OE/w==",
"dependencies": {
"svelte": "^5.0.0"
}
@ -4415,9 +4415,9 @@
}
},
"@damillora/plachta": {
"version": "6.6.0",
"resolved": "https://registry.npmjs.org/@damillora/plachta/-/plachta-6.6.0.tgz",
"integrity": "sha512-P8MWjHrcQPU1TKJEVQXxN7Wzl93NjAFBDzi6szSOfx3qTQ6GENIObdctU9Q5k4wRcZySguC8Hhw7ux2E9SCh1A==",
"version": "6.7.0",
"resolved": "https://registry.npmjs.org/@damillora/plachta/-/plachta-6.7.0.tgz",
"integrity": "sha512-Mkwz+8zUDl34/QdVF73YFnZbI50zIXYb0h2St2NAjAkZILGUgtlNuup0wftz7JyhwWUVLn1+1bwT727KC1OE/w==",
"requires": {
"svelte": "^5.0.0"
}

View File

@ -45,7 +45,7 @@
},
"type": "module",
"dependencies": {
"@damillora/plachta": "^6.6.0",
"@damillora/plachta": "^6.7.0",
"@directus/sdk": "^18.0.0"
}
}

View File

@ -9,7 +9,10 @@
PostRelated,
PostCard,
GhostStyle,
Notice
Notice,
PostStyle
} from '@damillora/plachta';
import PostSeo from '$lib/components/SEO/PostSEO.svelte';
@ -37,9 +40,9 @@
date={data.post.date_published ? dayjs(data.post.date_published).format('DD MMM YYYY') : null}
/>
<PostMain>
<GhostStyle>
<PostStyle>
{@html data.post.content}
</GhostStyle>
</PostStyle>
</PostMain>
<PostNavigator prev_post={data.prevPost} next_post={data.nextPost} />
</Post>