Metadata-Version: 1.0
Name: anora
Version: 0.1.1
Summary: Anora is a simple_tag for Django that determines whether or not a word should have an "a" or "an" in front of it. Adds either one of these depending on the phoentic value of the given text.
Home-page: https://github.com/juliaelman/anora
Author: Julia Elman
Author-email: julia.elman@gmail.com
License: BSD
Description: Anora - Django templatetag
        ==========================
        Anora is a simple_tag that determines whether or not a word should have an "a" or "an" in front of it. Adds either one of these depending on the phoentic value of the given text. It will also automatically add one space before the text and 
        
        Install
        -------
        
        1. ``pip install anora``
        2. Add ``anora`` to your ``INSTALLED_APPS`` 
        3. Add ``{% load anora %}`` to the top of templates you wish to use these tags in.
        
        Usage
        -------
        ``{% load anora %}``
        
        ``I was taking a walk in the woods today. I came across {{ animal_type|anora  }}.``
        
        Possible outcomes from the above:
        -------
        
        I was taking a walk in the woods today. I came across a raccoon.
        
        I was taking a walk in the woods today. I came across an owl.
        
        Credits
        -------
        Original template filter can he found [here](http://djangosnippets.org/snippets/1519/).
Platform: UNKNOWN
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.5
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Development Status :: 4 - Beta
Classifier: Operating System :: OS Independent
