aboutsummaryrefslogtreecommitdiffstats
path: root/docs/install.txt
diff options
context:
space:
mode:
authorWaylan Limberg <waylan@gmail.com>2013-02-19 16:33:36 -0500
committerWaylan Limberg <waylan@gmail.com>2013-02-19 16:33:36 -0500
commit8aa2fc7b5138fd97ded7dd1e70103532a9fd6583 (patch)
treea85aec909892c3e9ca08d23369f0e743e3beb177 /docs/install.txt
parent3b732805676969fdf61ac3214c42ab94e96da0ea (diff)
downloadmarkdown-8aa2fc7b5138fd97ded7dd1e70103532a9fd6583.tar.gz
markdown-8aa2fc7b5138fd97ded7dd1e70103532a9fd6583.tar.bz2
markdown-8aa2fc7b5138fd97ded7dd1e70103532a9fd6583.zip
Various changes to docs for updated changes, clarity, and to fix typos.
Diffstat (limited to 'docs/install.txt')
-rw-r--r--docs/install.txt16
1 files changed, 0 insertions, 16 deletions
diff --git a/docs/install.txt b/docs/install.txt
index 776bb17..3e55c77 100644
--- a/docs/install.txt
+++ b/docs/install.txt
@@ -65,19 +65,3 @@ command line:
git clone git://github.com/waylan/Python-Markdown.git python-markdown
cd python-markdown
python setup.py install
-
-Dependencies
-------------
-
-Python-Markdown requires the ElementTree module to be installed. In Python 2.5+
-ElementTree is included as part of the standard library at
-`xml.etree.ElementTree` and/or `xml.etree.cElementTree`. For earlier versions
-of Python, the library needs to be installed. However, Python-Markdown's
-install script will automaticaly detect the missing library and download and
-install the "ElementTree" library for you if your system has internet access.
-If you would like to use the "cElementTree" library (which is faster), you can
-install it manually. Markdown will check for the faster "c" library first and
-fall back to the slower python implementation when it is not available.
-
-See <http://effbot.org/zone/element-index.htm> for more information or to
-download the latest version of ElementTree.