Metadata-Version: 1.0
Name: fontawesome-markdown
Version: 0.1.2
Summary: Font Awesome support for Markdown
Home-page: http://bmcorser.github.com/fontawesome-markdown
Author: bmcorser
Author-email: benmarshallcorser@gmail.com
License: GPL
Description: Font Awesome and Markdown, together!
        ####################################
        For when words aren't enough.
        -----------------------------
        
        A Markdown extension that looks for things like ``:icon-coffee:`` and replaces them with the Font Awesome icon markup.
        
        Add a ``FontAwesomeExtension`` instance to your Markdown call and watch the magic unfold::
        
            >>> from markdown import Markdown
            >>> from fontawesome_markdown import FontAwesomeExtension
        
            >>> markdown = Markdown(extensions=[FontAwesomeExtension()]
            >>> markdown.convert('i ♥ :icon-coffee:')
            <p>i ♥ <i class="icon icon-coffee"></i></p>
        
        Don't forget to make the Font Awesome assets available to your DOM!
        
Platform: UNKNOWN
