From: digitalcraftsman Date: Fri, 20 Nov 2015 18:44:05 +0000 (+0100) Subject: Add shortcode for tweets X-Git-Tag: v0.15~8 X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=7d31d5f5;p=brevno-suite%2Fhugo Add shortcode for tweets --- diff --git a/tpl/template_embedded.go b/tpl/template_embedded.go index 5ae37a34..673907d0 100644 --- a/tpl/template_embedded.go +++ b/tpl/template_embedded.go @@ -47,6 +47,9 @@ func (t *GoHTMLTemplate) EmbedShortcodes() { `) t.AddInternalShortcode("gist.html", ``) + t.AddInternalShortcode("tweet.html", `{{ $user := index .Params 0 }} +{{ $tweet := index .Params 1 }} +{{ (getJSON "https://api.twitter.com/1/statuses/oembed.json?url=https://twitter.com/" $user "/status/" $tweet).html | safeHTML }}`) } func (t *GoHTMLTemplate) EmbedTemplates() {