File size: 750 Bytes
133d4af
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<script lang="ts">
	import Image from '$lib/components/common/Image.svelte';
	import CodeBlock from './CodeBlock.svelte';

	/* The html content of the tag */
	export let html; //: string;
	let parsedHTML = [html];

	export let images;
	export let codes;

	//  all images are in {{IMAGE_0}}, {{IMAGE_1}}....  format
	// all codes are in {{CODE_0}}, {{CODE_1}}....  format

	const rules = [];
	rules.forEach((rule) => {
		parsedHTML = parsedHTML.map((substr) => substr.split(rule.regex)).flat();
	});
</script>

{#each parsedHTML as part}
	{@const match = rules.find((rule) => rule.regex.test(part))}
	{#if match}
		<svelte:component this={match.component} {...match.props}>
			{@html part}
		</svelte:component>
	{:else}
		{@html part}
	{/if}
{/each}