Skip to content

Commit 87ca5f6

Browse files
committed
pythonhost.org/Markdown => Python-Markdown.github.io
1 parent 3d1c70c commit 87ca5f6

25 files changed

+39
-39
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.md`
9-
or on the website at <https://pythonhosted.org/Markdown/install/>.
9+
or on the website at <https://Python-Markdown.github.io/install/>.

README.md

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

17-
[Python-Markdown]: https://pythonhosted.org/Markdown/
17+
[Python-Markdown]: https://Python-Markdown.github.io/
1818
[Markdown]: http://daringfireball.net/projects/markdown/
19-
[Features]: https://pythonhosted.org/Markdown/index/#Features
20-
[Available Extensions]: https://pythonhosted.org/Markdown/extensions/
19+
[Features]: https://Python-Markdown.github.io#Features
20+
[Available Extensions]: https://Python-Markdown.github.io/extensions
2121

2222

2323
Documentation
2424
-------------
2525

2626
Installation and usage documentation is available in the `docs/` directory
2727
of the distribution and on the project website at
28-
<https://pythonhosted.org/Markdown/>.
28+
<https://Python-Markdown.github.io/>.
2929

30-
See the change log at <https://pythonhosted.org/Markdown/change_log.html>.
30+
See the change log at <https://Python-Markdown.github.io/change_log>.
3131

3232
Support
3333
-------

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 <https://pythonhosted.org/Markdown/> for more
13+
See <https://Python-Markdown.github.io/> 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
@@ -27,7 +27,7 @@ def parse_options(args=None, values=None):
2727
usage = """%prog [options] [INPUTFILE]
2828
(STDIN is assumed if no INPUTFILE is given)"""
2929
desc = "A Python implementation of John Gruber's Markdown. " \
30-
"https://pythonhosted.org/Markdown/"
30+
"https://Python-Markdown.github.io/"
3131
ver = "%%prog %s" % markdown.version
3232

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

markdown/extensions/abbr.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
55
This extension adds abbreviation handling to Python-Markdown.
66
7-
See <https://pythonhosted.org/Markdown/extensions/abbreviations.html>
7+
See <https://Python-Markdown.github.io/extensions/abbreviations>
88
for documentation.
99
1010
Oringinal code Copyright 2007-2008 [Waylan Limberg](http://achinghead.com/) and

markdown/extensions/admonition.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
77
[rST]: http://docutils.sourceforge.net/docs/ref/rst/directives.html#specific-admonitions # noqa
88
9-
See <https://pythonhosted.org/Markdown/extensions/admonition.html>
9+
See <https://Python-Markdown.github.io/extensions/admonition>
1010
for documentation.
1111
1212
Original code Copyright [Tiago Serafim](http://www.tiagoserafim.com/).

markdown/extensions/attr_list.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
[maruku](http://maruku.rubyforge.org/proposal.html#attribute_lists)'s
77
feature of the same name.
88
9-
See <https://pythonhosted.org/Markdown/extensions/attr_list.html>
9+
See <https://Python-Markdown.github.io/extensions/attr_list>
1010
for documentation.
1111
1212
Original code Copyright 2011 [Waylan Limberg](http://achinghead.com/).

markdown/extensions/codehilite.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
55
Adds code/syntax highlighting to standard Python-Markdown code blocks.
66
7-
See <https://pythonhosted.org/Markdown/extensions/code_hilite.html>
7+
See <https://Python-Markdown.github.io/extensions/code_hilite>
88
for documentation.
99
1010
Original code Copyright 2006-2008 [Waylan Limberg](http://achinghead.com/).

markdown/extensions/def_list.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
55
Adds parsing of Definition Lists to Python-Markdown.
66
7-
See <https://pythonhosted.org/Markdown/extensions/definition_lists.html>
7+
See <https://Python-Markdown.github.io/extensions/definition_lists>
88
for documentation.
99
1010
Original code Copyright 2008 [Waylan Limberg](http://achinghead.com)

markdown/extensions/extra.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
variable defined below, but be aware that such changes may be lost
2121
when you upgrade to any future version of Python-Markdown.
2222
23-
See <https://pythonhosted.org/Markdown/extensions/extra.html>
23+
See <https://Python-Markdown.github.io/extensions/extra>
2424
for documentation.
2525
2626
Copyright The Python Markdown Project

markdown/extensions/fenced_code.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
55
This extension adds Fenced Code Blocks to Python-Markdown.
66
7-
See <https://pythonhosted.org/Markdown/extensions/fenced_code_blocks.html>
7+
See <https://Python-Markdown.github.io/extensions/fenced_code_blocks>
88
for documentation.
99
1010
Original code Copyright 2007-2008 [Waylan Limberg](http://achinghead.com/).

markdown/extensions/footnotes.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
55
Adds footnote handling to Python-Markdown.
66
7-
See <https://pythonhosted.org/Markdown/extensions/footnotes.html>
7+
See <https://Python-Markdown.github.io/extensions/footnotes>
88
for documentation.
99
1010
Copyright The Python Markdown Project

markdown/extensions/headerid.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
55
Auto-generate id attributes for HTML headers.
66
7-
See <https://pythonhosted.org/Markdown/extensions/header_id.html>
7+
See <https://Python-Markdown.github.io/extensions/header_id>
88
for documentation.
99
1010
Original code Copyright 2007-2011 [Waylan Limberg](http://achinghead.com/).

markdown/extensions/meta.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
55
This extension adds Meta Data handling to markdown.
66
7-
See <https://pythonhosted.org/Markdown/extensions/meta_data.html>
7+
See <https://Python-Markdown.github.io/extensions/meta_data>
88
for documentation.
99
1010
Original code Copyright 2007-2008 [Waylan Limberg](http://achinghead.com).

markdown/extensions/nl2br.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
A Python-Markdown extension to treat newlines as hard breaks; like
66
GitHub-flavored Markdown does.
77
8-
See <https://pythonhosted.org/Markdown/extensions/nl2br.html>
8+
See <https://Python-Markdown.github.io/extensions/nl2br>
99
for documentation.
1010
1111
Oringinal code Copyright 2011 [Brian Neal](http://deathofagremmie.com/)

markdown/extensions/sane_lists.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
55
Modify the behavior of Lists in Python-Markdown to act in a sane manor.
66
7-
See <https://pythonhosted.org/Markdown/extensions/sane_lists.html>
7+
See <https://Python-Markdown.github.io/extensions/sane_lists>
88
for documentation.
99
1010
Original code Copyright 2011 [Waylan Limberg](http://achinghead.com)

markdown/extensions/smart_strong.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
55
This extention adds smarter handling of double underscores within words.
66
7-
See <https://pythonhosted.org/Markdown/extensions/smart_strong.html>
7+
See <https://Python-Markdown.github.io/extensions/smart_strong>
88
for documentation.
99
1010
Original code Copyright 2011 [Waylan Limberg](http://achinghead.com)

markdown/extensions/smarty.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
Adds conversion of ASCII dashes, quotes and ellipses to their HTML
77
entity equivalents.
88
9-
See <https://pythonhosted.org/Markdown/extensions/smarty.html>
9+
See <https://Python-Markdown.github.io/extensions/smarty>
1010
for documentation.
1111
1212
Author: 2013, Dmitry Shachnev <[email protected]>

markdown/extensions/tables.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
55
Added parsing of tables to Python-Markdown.
66
7-
See <https://pythonhosted.org/Markdown/extensions/tables.html>
7+
See <https://Python-Markdown.github.io/extensions/tables>
88
for documentation.
99
1010
Original code Copyright 2009 [Waylan Limberg](http://achinghead.com)

markdown/extensions/toc.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
Table of Contents Extension for Python-Markdown
33
===============================================
44
5-
See <https://pythonhosted.org/Markdown/extensions/toc.html>
5+
See <https://Python-Markdown.github.io/extensions/toc>
66
for documentation.
77
88
Oringinal code Copyright 2008 [Jack Miller](http://codezen.org)

markdown/extensions/wikilinks.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
55
Converts [[WikiLinks]] to relative links.
66
7-
See <https://pythonhosted.org/Markdown/extensions/wikilinks.html>
7+
See <https://Python-Markdown.github.io/extensions/wikilinks>
88
for documentation.
99
1010
Original code Copyright [Waylan Limberg](http://achinghead.com/).

mkdocs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
site_name: Python-Markdown
2-
site_url: https://Python-Markdown.github.io
2+
site_url: https://Python-Markdown.github.io/
33
repo_url: https://github.com/Python-Markdown/markdown
44
site_author: "The Python-Markdown Project"
55
copyright: "Copyright &copy; 2010-2017"

setup.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -72,8 +72,8 @@ def run(self):
7272
supported by the `Available Extensions`_.
7373
7474
.. _Markdown: http://daringfireball.net/projects/markdown/
75-
.. _Features: https://pythonhosted.org/Markdown/#Features
76-
.. _`Available Extensions`: https://pythonhosted.org/Markdown/extensions/
75+
.. _Features: https://Python-Markdown.github.io#Features
76+
.. _`Available Extensions`: https://Python-Markdown.github.io/extensions/
7777
7878
Support
7979
=======
@@ -88,7 +88,7 @@ def run(self):
8888
setup(
8989
name='Markdown',
9090
version=version,
91-
url='https://pythonhosted.org/Markdown/',
91+
url='https://Python-Markdown.github.io/',
9292
download_url='http://pypi.python.org/packages/source/M/Markdown/Markdown-%s.tar.gz' % version,
9393
description='Python implementation of Markdown.',
9494
long_description=long_description,

tests/misc/em-around-links.html

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
<h1>Title</h1>
22
<ul>
3-
<li><em><a href="https://pythonhosted.org/Markdown/">Python in Markdown</a> by some
3+
<li><em><a href="http://example.com">Python in Markdown</a> by some
44
great folks</em> - This <em>does</em> work as expected.</li>
5-
<li><em><a href="https://pythonhosted.org/Markdown/">Python in Markdown</a> by some
5+
<li><em><a href="http://example.com">Python in Markdown</a> by some
66
great folks</em> - This <em>does</em> work as expected.</li>
7-
<li><a href="https://pythonhosted.org/Markdown/"><em>Python in Markdown</em></a> by some
7+
<li><a href="http://example.com"><em>Python in Markdown</em></a> by some
88
great folks - This <em>does</em> work as expected.</li>
9-
<li><a href="https://pythonhosted.org/Markdown/"><em>Python in Markdown</em></a> <em>by some
9+
<li><a href="http://example.com"><em>Python in Markdown</em></a> <em>by some
1010
great folks</em> - This <em>does</em> work as expected.</li>
1111
</ul>
12-
<p><em><a href="https://pythonhosted.org/Markdown/">Python in Markdown</a> by some
12+
<p><em><a href="http://example.com">Python in Markdown</a> by some
1313
great folks</em> - This <em>does</em> work as expected.</p>

tests/misc/em-around-links.txt

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
# Title
22

3-
- *[Python in Markdown](https://pythonhosted.org/Markdown/) by some
3+
- *[Python in Markdown](http://example.com) by some
44
great folks* - This *does* work as expected.
5-
- _[Python in Markdown](https://pythonhosted.org/Markdown/) by some
5+
- _[Python in Markdown](http://example.com) by some
66
great folks_ - This *does* work as expected.
7-
- [_Python in Markdown_](https://pythonhosted.org/Markdown/) by some
7+
- [_Python in Markdown_](http://example.com) by some
88
great folks - This *does* work as expected.
9-
- [_Python in Markdown_](https://pythonhosted.org/Markdown/) _by some
9+
- [_Python in Markdown_](http://example.com) _by some
1010
great folks_ - This *does* work as expected.
1111

12-
_[Python in Markdown](https://pythonhosted.org/Markdown/) by some
12+
_[Python in Markdown](http://example.com) by some
1313
great folks_ - This *does* work as expected.
1414

0 commit comments

Comments
 (0)