Skip to content
This repository was archived by the owner on Dec 18, 2024. It is now read-only.

Commit 9663654

Browse files
committed
'http://packages.python.org/Markdown/' => 'https://pythonhosted.org/Markdown/'. The former redirects to the latter anyway. Might as well point to the actual destination.
1 parent d620a31 commit 9663654

File tree

15 files changed

+32
-32
lines changed

15 files changed

+32
-32
lines changed

INSTALL.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@ As an Admin/Root user on your system do:
66
pip install markdown
77

88
Or for more specific instructions, view the documentation in `docs/install.txt`
9-
or on the website at <http://packages.python.org/Markdown/>.
9+
or on the website at <https://pythonhosted.org/Markdown/install.html>.

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,18 +13,18 @@ though there are a few known issues. See [Features][] for information
1313
on what exactly is supported and what is not. Additional features are
1414
supported by the [Available Extensions][].
1515

16-
[Python-Markdown]: http://packages.python.org/Markdown/
16+
[Python-Markdown]: https://pythonhosted.org/Markdown/
1717
[Markdown]: http://daringfireball.net/projects/markdown/
18-
[Features]: http://packages.python.org/Markdown/index.html#Features
19-
[Available Extensions]: http://packages.python.org/Markdown/extensions/index.html
18+
[Features]: https://pythonhosted.org/Markdown/index.html#Features
19+
[Available Extensions]: https://pythonhosted.org/Markdown/extensions/index.html
2020

2121

2222
Documentation
2323
-------------
2424

2525
Installation and usage documentation is available in the `docs/` directory
2626
of the distribution and on the project website at
27-
<http://packages.python.org/Markdown/>.
27+
<https://pythonhosted.org/Markdown/>.
2828

2929
Support
3030
-------

markdown/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
import markdown
1111
html = markdown.markdown(your_text_string)
1212
13-
See <http://packages.python.org/Markdown/> for more
13+
See <https://pythonhosted.org/Markdown/> for more
1414
information and instructions on how to extend the functionality of
1515
Python Markdown. Read that before you try modifying this file.
1616

markdown/__main__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ def parse_options():
2020
usage = """%prog [options] [INPUTFILE]
2121
(STDIN is assumed if no INPUTFILE is given)"""
2222
desc = "A Python implementation of John Gruber's Markdown. " \
23-
"http://packages.python.org/Markdown/"
23+
"https://pythonhosted.org/Markdown/"
2424
ver = "%%prog %s" % markdown.version
2525

2626
parser = optparse.OptionParser(usage=usage, description=desc, version=ver)

markdown/extensions/attr_list.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
1515
Dependencies:
1616
* [Python 2.4+](http://python.org)
17-
* [Markdown 2.1+](http://packages.python.org/Markdown/)
17+
* [Markdown 2.1+](https://pythonhosted.org/Markdown/)
1818
1919
"""
2020

markdown/extensions/codehilite.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,14 @@
66
77
Copyright 2006-2008 [Waylan Limberg](http://achinghead.com/).
88
9-
Project website: <http://packages.python.org/Markdown/extensions/code_hilite.html>
9+
Project website: <https://pythonhosted.org/Markdown/extensions/code_hilite.html>
1010
1111
1212
License: BSD (see ../LICENSE.md for details)
1313
1414
Dependencies:
1515
* [Python 2.3+](http://python.org/)
16-
* [Markdown 2.0+](http://packages.python.org/Markdown/)
16+
* [Markdown 2.0+](https://pythonhosted.org/Markdown/)
1717
* [Pygments](http://pygments.org/)
1818
1919
"""

markdown/extensions/fenced_code.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,14 +75,14 @@
7575
7676
Copyright 2007-2008 [Waylan Limberg](http://achinghead.com/).
7777
78-
Project website: <http://packages.python.org/Markdown/extensions/fenced_code_blocks.html>
78+
Project website: <https://pythonhosted.org/Markdown/extensions/fenced_code_blocks.html>
7979
8080
8181
License: BSD (see ../docs/LICENSE for details)
8282
8383
Dependencies:
8484
* [Python 2.4+](http://python.org)
85-
* [Markdown 2.0+](http://packages.python.org/Markdown/)
85+
* [Markdown 2.0+](https://pythonhosted.org/Markdown/)
8686
* [Pygments (optional)](http://pygments.org)
8787
8888
"""

markdown/extensions/headerid.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,14 +63,14 @@
6363
6464
Copyright 2007-2011 [Waylan Limberg](http://achinghead.com/).
6565
66-
Project website: <http://packages.python.org/Markdown/extensions/header_id.html>
66+
Project website: <https://pythonhosted.org/Markdown/extensions/header_id.html>
6767
6868
6969
License: BSD (see ../docs/LICENSE for details)
7070
7171
Dependencies:
7272
* [Python 2.3+](http://python.org)
73-
* [Markdown 2.0+](http://packages.python.org/Markdown/)
73+
* [Markdown 2.0+](https://pythonhosted.org/Markdown/)
7474
7575
"""
7676

markdown/extensions/meta.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
3333
Copyright 2007-2008 [Waylan Limberg](http://achinghead.com).
3434
35-
Project website: <http://packages.python.org/Markdown/meta_data.html>
35+
Project website: <https://pythonhosted.org/Markdown/extensions/meta_data.html>
3636
3737
3838
License: BSD (see ../LICENSE.md for details)

markdown/extensions/nl2br.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
1717
Dependencies:
1818
* [Python 2.4+](http://python.org)
19-
* [Markdown 2.1+](http://packages.python.org/Markdown/)
19+
* [Markdown 2.1+](https://pythonhosted.org/Markdown/)
2020
2121
"""
2222

0 commit comments

Comments
 (0)