mirror of
https://github.com/getpelican/pelican.git
synced 2025-10-15 20:28:56 +02:00
Add a features list on the README. Remove the dependency to rst2pdf by default.
This commit is contained in:
parent
27ee2cf4e6
commit
aa30ca9256
2 changed files with 13 additions and 2 deletions
12
README.rst
12
README.rst
|
|
@ -39,6 +39,18 @@ Note that only the `date` metadata is mandatory, so you just have to add that in
|
||||||
your files. The category can also be determined by the directory where the rst file
|
your files. The category can also be determined by the directory where the rst file
|
||||||
is. For instance, the category of `python/foobar/myfoobar.rst` is `foobar`.
|
is. For instance, the category of `python/foobar/myfoobar.rst` is `foobar`.
|
||||||
|
|
||||||
|
Features
|
||||||
|
--------
|
||||||
|
|
||||||
|
Pelican currently supports:
|
||||||
|
|
||||||
|
* blog articles
|
||||||
|
* comments, via an external service (disqus). Please notice that while
|
||||||
|
it's useful, it's an external service, and you'll not manage the
|
||||||
|
comments by yourself. It could potentially eat your data.
|
||||||
|
* theming support (themes are done using `jinja2 <http://jinjna.pocoo.org>`_)
|
||||||
|
* PDF generation of the articles/pages (optional).
|
||||||
|
|
||||||
Getting started — Generate your blog
|
Getting started — Generate your blog
|
||||||
-------------------------------------
|
-------------------------------------
|
||||||
|
|
||||||
|
|
|
||||||
3
setup.py
3
setup.py
|
|
@ -1,8 +1,7 @@
|
||||||
from setuptools import setup
|
from setuptools import setup
|
||||||
import sys
|
import sys
|
||||||
|
|
||||||
requires = ['feedgenerator', 'jinja2', 'pygments', 'docutils', 'Markdown',
|
requires = ['feedgenerator', 'jinja2', 'pygments', 'docutils', 'Markdown']
|
||||||
'rst2pdf']
|
|
||||||
if sys.version_info < (2,7):
|
if sys.version_info < (2,7):
|
||||||
requires.append('argparse')
|
requires.append('argparse')
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue