pelican-gist icon indicating copy to clipboard operation
pelican-gist copied to clipboard

Easily embed GitHub Gists in your Pelican articles.

Results 5 pelican-gist issues
Sort by recently updated
recently updated
newest added

``` def setup_gist(pelican): """Setup the default settings.""" pelican.settings.setdefault('GIST_CACHE_ENABLED', True) pelican.settings.setdefault('GIST_CACHE_LOCATION', '/tmp/gist-cache') # Make sure the gist cache directory exists cache_base = pelican.settings.get('GIST_CACHE_LOCATION') if not os.path.exists(cache_base): os.makedirs(cache_base) ``` This fails on...

Hey, I am trying to use the plugin while using [status: draft](http://docs.getpelican.com/en/latest/content.html?highlight=draft#publishing-drafts) and it seems like I cannot make it work. I am actually not sure which generators\signal is responsible...

In order to use the native code highlighting of the remainder of the blog, a "raw" mode would be great which would amount to a static include of the gist's...

I had a look into pelican-gist but skipped it for now in favor of [gist-embed](https://github.com/blairvanderhoof/gist-embed), which opens access to a whole lot of options of the Gist Javascript API. How...

It would be great if the gist tag was available as a [liquid tag](https://github.com/getpelican/pelican-plugins/tree/master/liquid_tags). For the syntax , cf. the [Octopress gist tag](http://octopress.org/docs/plugins/gist-tag/).