Metadata-Version: 2.0
Name: mdx-embedly
Version: 0.2.0
Summary: Python Markdown extension for embeded url using Embedly
Home-page: https://github.com/yymm/mdx_embedly
Author: yymm
Author-email: yuya.yano.6260@gmail.com
License: MIT
Keywords: Markdown
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Topic :: Text Processing :: Markup :: HTML
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Requires-Dist: markdown
Provides-Extra: dev
Requires-Dist: check-manifest; extra == 'dev'
Provides-Extra: test
Requires-Dist: coverage; extra == 'test'

=====================================
Embedly Extension for Python-Markdown
=====================================

.. image:: https://travis-ci.org/yymm/mdx_embedly.svg?branch=master
  :target: https://travis-ci.org/yymm/mdx_embedly

.. image:: https://coveralls.io/repos/yymm/mdx_embedly/badge.svg?branch=master&service=github
  :target: https://coveralls.io/github/yymm/mdx_embedly?branch=master

.. image:: https://img.shields.io/pypi/v/mdx_embedly.svg
  :target: https://pypi.python.org/pypi/mdx_embedly

.. image:: https://img.shields.io/pypi/pyversions/mdx_embedly.svg
  :target: https://pypi.python.org/pypi/mdx_embedly

.. image:: https://img.shields.io/badge/license-MIT-blue.svg
  :target: https://opensource.org/licenses/MIT

A Python-Markdown extension for embeded url using `Embedly <http://embed.ly/>`_ .

.. code::

  [https://github.com/yymm/mdx_embedly:embed]

becomes

.. code::

  <p>
  <a class="embedly-card" href="https://github.com/yymm">embed.ly</a>
  <script async src="//cdn.embedly.com/widgets/platform.js"charset="UTF-8"></script>
  </p>

Installation
------------

.. code::

  $ pip install mdx_embedly

Usage
-----

.. code:: python

  import markdown
  # "source"
  html = markdown.markdown(source, extensions=['embedly'])

Usage for Pelican
-----------------

.. code:: python

  MD_EXTENSIONS = ['embedly']

In pelicanconf.py.


