Metadata-Version: 1.1
Name: pelican-gist
Version: 0.1.0
Summary: Easily embed GitHub Gists in your Pelican articles.
Home-page: https://github.com/streeter/pelican-gist
Author: Chris Streeter
Author-email: chris@chrisstreeter.com
License: Copyright (c) 2013 Chris Streeter

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Description: Pelican Gist Tag
        ================
        
        Pelican Gist Tag is a library to make it easy to GitHub Gists in your Pelican_ blogs.
        
        Installation
        ------------
        
        To install pelican-gist, simply:
        
        .. code-block:: bash
        
            $ pip install pelican-gist
        
        Then add a bit of code to your blog configuration:
        
        .. code-block:: python
        
            PLUGINS = [
                # ...
                'pelican_gist',
                # ...
            ]
        
        Usage
        -----
        
        In your articles, just add lines to your posts that look like:
        
        .. code-block:: html
        
            [gist:id=3254906,file=brew-update-notifier.sh]
        
        This will tell the plugin to insert gist id ``3254906`` and choose the file ``brew-update-notifier.sh`` into your post. The resulting HTML will look like:
        
        .. code-block:: html
        
            <div class="gist">
                <script src='https://gist.github.com/3254906.js?file=brew-update-notifier.sh'></script>
                <noscript>
                    <pre><code>#!/bin/bash ...</code></pre>
                </noscript>
            </div>
        
        Settings
        --------
        
        ``GIST_CACHE_ENABLED`` - Specifies whether to cache the gist on disk or not. Default is ``True``. (Optional)
        
        License
        -------
        
        Uses the `MIT`_ license.
        
        
        .. _Pelican: http://blog.getpelican.com/
        .. _MIT: http://opensource.org/licenses/MIT
        
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Text Processing
