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

Popular posts from this blog

javascript - Using jquery append to add option values into a select element not working -

Android soft keyboard reverts to default keyboard on orientation change -

Rendering JButton to get the JCheckBox behavior in a JTable by using images does not update my table -