Skip to content

Commit 76a74c0

Browse files
committed
fix: links not rendering in models pages by parsing the md content.
1 parent 87a946c commit 76a74c0

File tree

1 file changed

+1
-1
lines changed
  • src/routes/docs/references/[version]/models/[model]

1 file changed

+1
-1
lines changed

src/routes/docs/references/[version]/models/[model]/+page.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
<Td>{property.name}</Td>
4242
<Td>{property.type}</Td>
4343
<Td>
44-
{property.description}
44+
{@html parse(property.description)}
4545
{#if property.relatedModels}
4646
<!-- eslint-disable-next-line svelte/no-at-html-tags -->
4747
Can be one of: {@html parse(property.relatedModels)}

0 commit comments

Comments
 (0)