Michael V. Colianna
Michael V. Colianna
@clpowe Apologies, I don't seem to be getting notifications. I haven't seen any updates from my chat w/Storyblok support but I also don't know whether they interface with the devs...
In case you haven't tried a regular Rich Text component, simplistic examples: ```vue const props = defineProps({ content: Object }) const storyblokApi = useStoryblokApi() const richText = computed(() => storyblokApi.richTextResolver.render(props.content))...
It sure would help if I could comprehend properly, haha – I see now that you're talking about the marks and paragraph rendering schema. Thankfully, this is attached to a...
@farnabaz & @fanzeyi A note: I'm in the process of figuring out how to circumvent the wrapping of the Prose Image component in a `` tag, since my hope is...
@fanzeyi I'm not a fan of this but it works: `/components/content/ProseP.vue` ```vue const slots = useSlots() // Hacky check for an image const isImage = computed(() => { return slots.default()[0].type.tag...
See #1091 (duplicated by #6551 & #6593)