summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWaylan Limberg <waylan@gmail.com>2013-01-10 11:27:46 -0500
committerWaylan Limberg <waylan@gmail.com>2013-01-10 11:27:46 -0500
commit2fc427c7aa394a4dfa841f4c78b6393caa683dfd (patch)
tree164ec6858957465f1f8a73c096f1ef63644ed15f
parent6c49938bad9b26f00acd6fc74f399a7ee4d87701 (diff)
downloadpython-markdown-2fc427c7aa394a4dfa841f4c78b6393caa683dfd.tar.gz
Improved the goals in docs.
-rw-r--r--docs/index.txt8
1 files changed, 5 insertions, 3 deletions
diff --git a/docs/index.txt b/docs/index.txt
index 36b05b5..b44f5ae 100644
--- a/docs/index.txt
+++ b/docs/index.txt
@@ -20,12 +20,14 @@ Goals
The Python-Markdown project is developed with the following goals in mind:
-* Maintain a python implementation of markdown that follows the
- [syntax rules](http://daringfireball.net/projects/markdown/syntax)
+* Maintain a Python 2 *and* Python 3 library (with an optional CLI wrapper)
+ suited to use in web server environments (never raise an exception, never
+ write to stdout, etc.) as an implementation of the markdown parser that
+ follows the [syntax rules](http://daringfireball.net/projects/markdown/syntax)
and the behavior of the original (markdown.pl) implementation as reasonably
as possible (see [differences](#differences) for a few exceptions).
* Provide an [Extension API](extensions/api.html) which allows any behaviors of
- the parser to be overridden/changed.
+ the parser to be overridden/changed/added.
Features
--------