Last active
June 10, 2022 09:09
-
-
Save Rarst/3a4af07fa061a1bf2be4dc1beb42311d to your computer and use it in GitHub Desktop.
Autoembed tweet links in Hugo with markdown render hook https://gohugo.io/templates/render-hooks/
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{{ if (eq .Destination .Text) | and (in .Destination "twitter.com") | and (in .Destination "status") }} | |
<blockquote class="twitter-tweet" data-dnt="true"> | |
<a href="{{ .Destination | safeURL }}">{{ .Text | safeHTML }}</a> | |
</blockquote> | |
<script async src="https://platform.twitter.com/widgets.js" charset="utf-8"></script> | |
{{ else }}<a href="{{ .Destination | safeURL }}"{{ with .Title }} title="{{ . }}"{{ end }}>{{ .Text | safeHTML }}</a>{{end}} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment