diff options
author | Waylan Limberg <waylan@gmail.com> | 2012-03-07 23:56:25 -0500 |
---|---|---|
committer | Waylan Limberg <waylan@gmail.com> | 2012-03-07 23:56:25 -0500 |
commit | 371a637d37cac629818cf4d618299ccfcbbbc1d0 (patch) | |
tree | 6b0eaf5ebe9df470df7dd3c5f621e950501540ec | |
parent | 91f022a2e6f677162df477108cae5698a866f746 (diff) | |
download | markdown-371a637d37cac629818cf4d618299ccfcbbbc1d0.tar.gz markdown-371a637d37cac629818cf4d618299ccfcbbbc1d0.tar.bz2 markdown-371a637d37cac629818cf4d618299ccfcbbbc1d0.zip |
Point to docs hosted with PyPI rather than Yuri's missing site.
-rw-r--r-- | INSTALL.md | 3 | ||||
-rw-r--r-- | README.md | 8 | ||||
-rw-r--r-- | markdown/__init__.py | 2 | ||||
-rwxr-xr-x | setup.py | 6 |
4 files changed, 10 insertions, 9 deletions
@@ -5,4 +5,5 @@ As an Admin/Root user on your system do: pip install markdown -Or for more specific instructions, view the documentation in `docs/install.txt`. +Or for more specific instructions, view the documentation in `docs/install.txt` +or on the website at <http://packages.python.org/Markdown/>. @@ -7,10 +7,10 @@ though there are a few known issues. See [Features][] for information on what exactly is supported and what is not. Additional features are supported by the [Available Extensions][]. -[Python-Markdown]: http://freewisdom.org/projects/python-markdown +[Python-Markdown]: http://packages.python.org/Markdown/ [Markdown]: http://daringfireball.net/projects/markdown/ -[Features]: http://www.freewisdom.org/projects/python-markdown/Features -[Available Extensions]: http://www.freewisdom.org/projects/python-markdown/Available_Extensions +[Features]: http://packages.python.org/Markdown/index.html#Features +[Available Extensions]: http://packages.python.org/Markdown/extensions/index.html Documentation @@ -18,7 +18,7 @@ Documentation Installation and usage documentation is available in the `docs/` directory of the distribution and on the project website at -<http://freewisdom.org/projects/python-markdown>. +<http://packages.python.org/Markdown/>. Support ------- diff --git a/markdown/__init__.py b/markdown/__init__.py index 013fdc8..f259615 100644 --- a/markdown/__init__.py +++ b/markdown/__init__.py @@ -10,7 +10,7 @@ called from the command line. import markdown html = markdown.markdown(your_text_string) -See <http://www.freewisdom.org/projects/python-markdown/> for more +See <http://packages.python.org/Markdown/> for more information and instructions on how to extend the functionality of Python Markdown. Read that before you try modifying this file. @@ -166,11 +166,11 @@ class md_build(build): data = dict( name = 'Markdown', version = version, - url = 'http://www.freewisdom.org/projects/python-markdown', + url = 'http://packages.python.org/Markdown/', download_url = 'http://pypi.python.org/packages/source/M/Markdown/Markdown-%s.tar.gz' % version, description = 'Python implementation of Markdown.', - author = 'Manfred Stienstra and Yuri takhteyev', - author_email = 'yuri [at] freewisdom.org', + author = 'Manfred Stienstra, Yuri takhteyev and Waylan limberg', + author_email = 'markdown [at] freewisdom.org', maintainer = 'Waylan Limberg', maintainer_email = 'waylan [at] gmail.com', license = 'BSD License', |