@elmethis/core 0.5.6 → 0.5.8

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.
@@ -174,13 +174,10 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
174
174
  break;
175
175
  case "link":
176
176
  results.push(
177
- token.tokens != null && token.tokens.length !== 0 ? h(
178
- AsyncElmInlineText,
179
- { href: token.href },
180
- {
181
- default: () => renderByToken({ tokens: token.tokens })
182
- }
183
- ) : h(AsyncElmInlineText, { text: token.text, href: token.href })
177
+ token.tokens != null && token.tokens.length !== 0 ? h(AsyncElmInlineText, {
178
+ text: token.text,
179
+ href: token.href
180
+ }) : h(AsyncElmInlineText, { text: token.text, href: token.href })
184
181
  );
185
182
  break;
186
183
  case "list":
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@elmethis/core",
3
- "version": "0.5.6",
3
+ "version": "0.5.8",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },