Fixes link contents to render HTML
This commit is contained in:
@@ -67,8 +67,8 @@ const canonicalLinksUrl = new URL('links', Astro.site)
|
|||||||
<ul>
|
<ul>
|
||||||
{ LINKS.filter(matchesYear(year)).sort(sortByDateAddedDescending).map(link => (
|
{ LINKS.filter(matchesYear(year)).sort(sortByDateAddedDescending).map(link => (
|
||||||
<li class="h-entry e-content">
|
<li class="h-entry e-content">
|
||||||
<a class="u-url p-name" href={link.href}>{link.title}</a>.
|
<a class="u-url p-name" href={link.href} set:html={link.title} />.
|
||||||
{link.description}
|
<Fragment set:html={link.description} />
|
||||||
Added: <FormattedDate date={link.isoDateAdded} />
|
Added: <FormattedDate date={link.isoDateAdded} />
|
||||||
</li>
|
</li>
|
||||||
)) }
|
)) }
|
||||||
|
|||||||
Reference in New Issue
Block a user