Metadata-Version: 1.1
Name: pelican_vidme
Version: 0.1.0
Summary: Easily embed Vidme videos in your posts
Home-page: https://github.com/chriscowley/pelican_vidme
Author: Chris Cowley
Author-email: chris@chriscowley.me.uk
License: MIT
Download-URL: https://github.com/chriscowley/pelican_vidme/archive/0.1.0.zip
Description: =============
        Pelican Vidme
        =============
        
        Pelican Vidme is a plugin to enabled you to embed Vidme videos in your pages
        and articles.
        
        Installation
        ============
        
        To install pelican-vidme, simply install it from PyPI:
        
        .. code-block:: bash
        
            $ pip install pelican-vidme
        
        Then enabled it in your pelicanconf.py
        
        .. code-block:: python
        
            PLUGINS = [
                # ...
                'pelican_vidme',
                # ...
            ]
        
        Usage
        =====
        
        In your article or page, you simply need to add a line to embed you video.
        
        .. code-block:: rst
        
            .. vidme:: VIDEO_ID
        
        Which will result in:
        
        .. code-block:: html
        
            <div class="vidme" align="left">
            <iframe width="420" height="315" src="https://vid.me/VIDEO_ID" frameborder="0"></iframe>
            </div>
        
        License
        =======
        
        `MIT`_ license.
        
        .. _MIT: http://opensource.org/licenses/MIT
        
Platform: linux
Classifier: Development Status :: 3 - Alpha
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.1
Classifier: Programming Language :: Python :: 3.2
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Text Processing
