Ruby Jekyll - Octopress cannot Rake generate with URI -
looks having serious issues jekyll. nothing worked far , still have
jekyll 2.5.3 | error: bad uri(is not uri?): https://gist.githubusercontent.com/
i have had included along way source:
gist method: sample code below can used pull out code gist github
{% gist gist_id [filename] %}
i wanted illustrate these examples in blog ran rake generate issues giving aforementioned errors. have had done research , after having closed other errors (not closing blockquotes, etc), cannot figure out on own.
you're using documentation string placeholders.
{% gist gist_id [filename] %}
this string parsed octopress gist plugins , resulting url ( https://gist.githubusercontent.com/raw/id/[filename]
) has wrong pattern, error thrown.
if want print documentation in post can do.
{% highlight liquid %} {% raw %}{% gist gist_id [filename] %}{% endraw %} {% endhighlight %}
for more infos octopress' gist tag, see : http://octopress.org/docs/plugins/gist-tag/
Comments
Post a Comment