Metadata-Version: 1.1
Name: pelican-readtime
Version: 0.1.2
Summary: Plugin for Pelican that computes read time based on Medium's readtime "algorithm."
Home-page: https://github.com/JenkinsDev/pelican-readtime
Author: David Jenkins
Author-email: david.nicholas.jenkins@gmail.com
License: MIT
Description: Readtime plugin for pelican
        ===========================
        
        Plugin for `Pelican`_ that computes read time based on `Medium's readtime`_
        "algorithm".
        It adds a ``readtime`` and ``readtime_minutes`` attributes to articles, with
        the time estimation for reading the article.
        
        Usage
        -----
        
        To use it you have to add the plugin name to the ``pelicanconf.py`` file.
        
        .. code:: python
        
        	PLUGINS=[ ... , 'readtime']
        
        Then you can access the ``readtime`` variable to show read time estimation on
        your templates.
        
        .. code:: html
        
          {% if article.readtime %} <div>{{ article.readtime }} read</div> {% endif %}
        
        It will generate the following:
        
        .. code:: html
        
          <div>X Minutes and Y Seconds read</div>
        
        Alternatively, you can use the ``readtime_minutes`` variable to get the number
        of minutes instead of the fully formatted text.
        
        .. _`Pelican`: http://getpelican.com/
        .. _`Medium's readtime`: https://help.medium.com/hc/en-us/articles/214991667-Read-time
        
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Natural Language :: English
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.3
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires: pelican
