@humanspeak/svelte-markdown 0.7.1 → 0.7.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -91,10 +91,12 @@
91
91
  }
92
92
  </script>
93
93
 
94
- <Parser
95
- {tokens}
96
- {...rest}
97
- options={combinedOptions}
98
- slug={(val: string): string => (slugger ? slugger.slug(val) : '')}
99
- renderers={combinedRenderers}
100
- />
94
+ {#key source}
95
+ <Parser
96
+ {tokens}
97
+ {...rest}
98
+ options={combinedOptions}
99
+ slug={(val: string): string => (slugger ? slugger.slug(val) : '')}
100
+ renderers={combinedRenderers}
101
+ />
102
+ {/key}
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@humanspeak/svelte-markdown",
3
3
  "description": "A powerful, customizable markdown renderer for Svelte with TypeScript support",
4
- "version": "0.7.1",
4
+ "version": "0.7.2",
5
5
  "scripts": {
6
6
  "dev": "vite dev",
7
7
  "build": "vite build && npm run package",