Metadata-Version: 1.1
Name: mdx-twitter
Version: 0.1.0
Summary: Markdown extension for embedding tweets
Home-page: https://github.com/zen4ever/mdx-twitter
Author: Andrii Kurinnyi
Author-email: andrew@marpasoft.com
License: BSD
Description: ===============================
        Markdown Twitter Extension
        ===============================
        
        .. image:: https://badge.fury.io/py/mdx-twitter.png
            :target: http://badge.fury.io/py/mdx-twitter
            
        .. image:: https://travis-ci.org/zen4ever/mdx-twitter.png?branch=master
                :target: https://travis-ci.org/zen4ever/mdx-twitter
        
        .. image:: https://pypip.in/d/mdx-twitter/badge.png
                :target: https://crate.io/packages/mdx-twitter?version=latest
        
        
        Markdown extension for embedding tweets using twitter OEmbed API
        
        * Free software: BSD license
        * Documentation: http://mdx-twitter.rtfd.org.
        
        How to use
        ----------
        
        Allows you to embed tweets into your Markdown.
        
        Just install the package:
        
            .. code-block:: bash
        
                pip install mdx-twitter
        
        Because Twitter API 1.1 requires you to authenticate, you will need to create
        a config file with your credentials at '~/.mdx_twitter.cfg'::
        
            [Twitter]
            CONSUMER_KEY=xxxxxxxxxxxx
            CONSUMER_SECRET=xxxxxxxxxxxx
            ACCESS_TOKEN=xxxxxxxxxxxx
            ACCESS_TOKEN_SECRET=xxxxxxxxxxxx
        
        Then just add 'twitter' to the list of your extensions:
        
            .. code-block:: python
        
                import markdown
        
                md = markdown.Markdown(extensions=['twitter'])
        
        Twitter urls in your Makdown will become embedded tweets::
        
                https://twitter.com/jasoncosta/status/240192632003911681
        
        
        
        
        History
        -------
        
        0.1.0 (2013-08-31)
        ++++++++++++++++++
        
        * First release on PyPI.
Keywords: Markdown,Twitter,Python
Platform: UNKNOWN
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
