Effortlessly blend Svelte components into content with WordPress-inspired shortcodes. Simplify dynamic embedding with a familiar touch.
- 📌 Dynamic Embeds: Seamlessly integrate Svelte components into static content.
- 🔄 Props Transfer: Directly pass shortcode attributes as Svelte props.
- ✒️ Versatile Syntax: Supports both self-closing ([component]) and pair tags ([component]...[/component]), allowing you to write shortcodes with or without quotes around attribute values ([youtube id="123"] or [youtube id=123]).
- 🎟️ Slot Support: Easily pass content between opening and closing shortcodes, which gets rendered using Svelte's
<slot>
mechanism. It also supportsexport let slot
if you need the slot content as a variable. - 🧱 HTML Compatibility: Seamless integration with HTML content! the library won't interfere with your HTML structure.
- 🌐 SSR Compatibility: Ready for SvelteKit's server-side rendering.
- 🛠️ Custom Components: Fully adaptable with your custom Svelte components for personalized designs.
- 📦 Unlimited Shortcodes: Embed any number of Svelte components or shortcodes without restrictions.
- 📜 Multi-Line Support: Captures and processes shortcodes with content that spans multiple lines, ensuring a flexible and forgiving user experience.
# bun
bun install @elron/svelte-wp-shortcode@latest
# pnpm
pnpm install @elron/svelte-wp-shortcode@latest
# npm
npm install @elron/svelte-wp-shortcode@latest
# Yarn
yarn install @elron/svelte-wp-shortcode@latest
- Import the Shortcodes component and your custom Svelte components:
import WpShortcodes from '@elron/svelte-wp-shortcode';
// Import Your Own Custom Svelte Components
import TryButton from './TryButton.svelte';
import Note from './Note.svelte';
import Youtube from './Youtube.svelte';
import Strong from './Strong.svelte';
- Use the shortcodes in your content:
<WpShortcodes
markup={`
Simple embed: [try-button]
Text within: [note]Here's some inner text![/note]
With properties: [youtube id=EVP1NQAnpYk]
All combined: [strong color="red" class="text-xl"]Awesome, right?[/strong]
With HTML: <i>Still works!<i>
`}
components={{
'try-button': TryButton,
'note': Note,
'youtube': Youtube,
'strong': Strong
}}
/>
Voilà! The <TryButton>
, <Note>
, <Youtube>
, and <Strong>
Svelte components are rendered based on their respective shortcode types. Obviously, you can replace them with your own components.
- For the shortcode attributes, you must use double quotes
[example message="hey"]
or no quotes at all[example message=hey]
. Single quotes won't work. - The library does not support for nested shortcodes. It's optimized for simpler use cases, but deeper nesting or intricate scenarios might require special attention.
- The attribute
slot
is reserved so you can useexport let slot
if needed (<slot />
is supported as well). Example: If this is the shortcode[shortcode slot="Initial Content"]Overridden Content[/shortcode]
thenexport let slot
theslot
value will becomeOverriden Content
.
There is a known svelte issue - {@html} tag is broken during hydration #8213 - that causes the @html code to render badly (duplicates itself).
If you encounter an issue, there are two known workarounds for now.
This workaround still supports SSR (good for SEO).
<script lang="ts">
import WpShortcodes from '@elron/svelte-wp-shortcode';
import TryButton from './WpShortcodes/TryButton.svelte';
export let markup: string;
let components = { 'try-button': TryButton };
onMount(() => {
mounted = true;
});
</script>
{#key mounted}
<WpShortcodes {components} {markup} />
{/key}
This will disable SSR (bad for SEO).
export const csr = false;
If you've found another workaround or a fix, please share in the repo, would love your contribution!
Your input is valued! Share your feedback, report bugs, or make pull requests on our GitHub repository.
This project is licensed under the MIT License - see the LICENSE.md file for details.