=========================================================
sphinxcontrib-recentpages:  Sphinx Recent Pages Extension
=========================================================

This sphinx extension provides a new directive which displays recent updated files list.

.. contents::
   :depth: 2


Introduction
============

This sphinx extension provides a new directive which displays recent updated files list.
If you want to get all page list ordered by mtime, just put recentpages directive as follows:

::

  .. recentpages::


If you want to display recent 3 files only, add num option to the directive:
  
::

  .. recentpages::
      :num: 3

  

Install
=======


Use ``easy_install``::

  easy_install sphinxcontrib-recentpages

Then add the following two lines into source/conf.py::

  extensions += ['sphinxcontrib.recentpages']


