Skip to content

Commit

Permalink
Point to docs hosted with PyPI rather than Yuri's missing site.
Browse files Browse the repository at this point in the history
  • Loading branch information
Waylan Limberg committed Mar 8, 2012
1 parent 91f022a commit 371a637
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 9 deletions.
3 changes: 2 additions & 1 deletion INSTALL.md
Original file line number Diff line number Diff line change
Expand Up @@ -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/>.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,18 +7,18 @@ 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
-------------

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
-------
Expand Down
2 changes: 1 addition & 1 deletion markdown/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
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.
Expand Down
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -166,11 +166,11 @@ def has_docs(self):
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',
Expand Down

0 comments on commit 371a637

Please sign in to comment.