Allow picking a specific file out of a gist
authorKonstantin Kliakhandler <kosta@slumpy.org>
Fri, 11 Mar 2016 14:02:57 +0000 (08:02 -0600)
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Fri, 11 Mar 2016 17:29:07 +0000 (18:29 +0100)
docs/content/extras/shortcodes.md
tpl/template_embedded.go

index 34c6f348685ff0960d139a13f8db7190a228fb31..68dbb6681bcb625de93f91259ebc817dc74c056d 100644 (file)
@@ -211,6 +211,10 @@ pass the owner and the ID of the gist to the shortcode:
 
     {{</* gist spf13 7896402 */>}}
 
+If the gist contains several files and you want to quote just one of them, you can pass the filename (quoted) as an optional third argument:
+
+    {{</* gist spf13 7896402 "img.html" */>}}
+
 ### Speaker Deck
 
 To embed slides from [Speaker Deck](https://speakerdeck.com/), click on "&lt;&#8239;/&gt;&nbsp;Embed" (under Share right next to the template on Speaker Deck) and copy the URL, e.g.:
index 53f5c0f5ee78bccd675877c5bc999a769d9b2218..dae36a297a8ecca6479c793ab1dec9396d927f0f 100644 (file)
@@ -58,7 +58,7 @@ func (t *GoHTMLTemplate) EmbedShortcodes() {
   <iframe src="//player.vimeo.com/video/{{ .Get 0 }}" {{ if len .Params | eq 1 }}style="position: absolute; top: 0; left: 0; width: 100%; height: 100%;" {{ end }}webkitallowfullscreen mozallowfullscreen allowfullscreen></iframe>
  </div>
 {{ end }}`)
-       t.AddInternalShortcode("gist.html", `<script src="//gist.github.com/{{ index .Params 0 }}/{{ index .Params 1 }}.js"></script>`)
+       t.AddInternalShortcode("gist.html", `<script src="//gist.github.com/{{ index .Params 0 }}/{{ index .Params 1 }}.js{{if len .Params | eq 3 }}?file={{ index .Params 2 }}{{end}}"></script>`)
        t.AddInternalShortcode("tweet.html", `{{ (getJSON "https://api.twitter.com/1/statuses/oembed.json?id=" (index .Params 0)).html | safeHTML }}`)
 }