Merge pull request #2314 from troyswanson/gist-docs

This commit is contained in:
Parker Moore 2014-05-06 22:39:35 -04:00
commit 0fc990423b
1 changed files with 8 additions and 19 deletions

View File

@ -359,24 +359,7 @@ You can also use this tag to create a link to a post in Markdown as follows:
### Gist ### Gist
Use the `gist` tag to easily embed a GitHub Gist onto your site: Use the `gist` tag to easily embed a GitHub Gist onto your site. This works with public or secret gists:
{% highlight text %}
{% raw %}
{% gist 5555251 %}
{% endraw %}
{% endhighlight %}
You may also optionally specify the filename in the gist to display:
{% highlight text %}
{% raw %}
{% gist 5555251 result.md %}
{% endraw %}
{% endhighlight %}
The `gist` tag also works with private gists, which require the gist owner's
github username:
{% highlight text %} {% highlight text %}
{% raw %} {% raw %}
@ -384,4 +367,10 @@ github username:
{% endraw %} {% endraw %}
{% endhighlight %} {% endhighlight %}
The private gist syntax also supports filenames. You may also optionally specify the filename in the gist to display:
{% highlight text %}
{% raw %}
{% gist parkr/931c1c8d465a04042403 jekyll-private-gist.markdown %}
{% endraw %}
{% endhighlight %}