Skip to content

Commit

Permalink
Fix ement.el breaking due to invalid html (a inside of a)
Browse files Browse the repository at this point in the history
  • Loading branch information
MTRNord committed Jun 8, 2024
1 parent abad01f commit 432fd93
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion templates/ecosystem/clients.html
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ <h2>All known clients</h2>
<a href="{{ client.path }}" class="project-card client {{ clients::classes(client=client.extra) }}">
<img src="./{{ thumbnail }}" alt="{{ client.title }} Logo">
<h3>{{ client.title }}</h3>
<span>{{ client.content | safe }}</span>
<span>{{ client.content | regex_replace(pattern=`<a.*>(?P<text>.*)</a>`, rep=`$text`) | safe }}</span>
<div class="platform-links">
{{ clients::platforms(packages=client.extra.packages) }}
</div>
Expand Down

0 comments on commit 432fd93

Please sign in to comment.