Metadata-Version: 1.1
Name: fontawesome-markdown
Version: 0.2.5
Summary: Font Awesome support for Markdown
Home-page: http://bmcorser.github.com/fontawesome-markdown
Author: bmcorser
Author-email: bmcorser@gmail.com
License: GPL
Description: Font Awesome and Markdown, together!
        ####################################
        
        For when words aren't enough.
        -----------------------------
        
        .. image:: https://travis-ci.org/bmcorser/fontawesome-markdown.svg?branch=0.2.4
            :target: https://travis-ci.org/bmcorser/fontawesome-markdown
        
        A Markdown extension that looks for things like ``:fa-coffee:`` and replaces
        them with the Font Awesome icon markup.
        
        Add a ``FontAwesomeExtension`` instance to your Markdown call and watch the
        magic unfold:
        
        .. code-block:: python
        
            >>> from markdown import Markdown
            >>> from fontawesome_markdown import FontAwesomeExtension
        
            >>> markdown = Markdown(extensions=[FontAwesomeExtension()]
            >>> markdown.convert('i ♥ :fa-coffee:')
            <p>i ♥ <i class="fa fa-coffee"></i></p>
        
        Don't forget to make the Font Awesome assets available to your DOM, and you're done!
        
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.2
Classifier: Programming Language :: Python :: 3.4
