Skip to content
This repository was archived by the owner on Aug 10, 2022. It is now read-only.

Commit ba4cebd

Browse files
authored
Merge pull request #3683 from google/add-md-lib
Adds Markdown lib & fixes broken links to ATOM & RSS feeds
2 parents 1514e30 + a4688ed commit ba4cebd

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

41 files changed

+6067
-15
lines changed

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
.DS_Store
44
node_modules/*
55
.drone.sec.yml
6-
gae/lib/*
76
src/data/youtubeAPIKey.txt
87
gulp-tasks/deploy.js
98
scratch/*

gae/article.tpl

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -119,9 +119,9 @@
119119
<div class="devsite-content-footer nocontent">
120120
<p>
121121
Except as otherwise noted, the content of this page is licensed under the
122-
<a href="http://creativecommons.org/licenses/by/3.0/">Creative Commons
122+
<a href="https://creativecommons.org/licenses/by/3.0/">Creative Commons
123123
Attribution 3.0 License</a>, and code samples are licensed under the
124-
<a href="http://www.apache.org/licenses/LICENSE-2.0">Apache 2.0 License</a>.
124+
<a href="https://www.apache.org/licenses/LICENSE-2.0">Apache 2.0 License</a>.
125125
For details, see our <a href="https://developers.google.com/site-policies">
126126
Site Policies</a>. Java is a registered trademark of Oracle and/or its
127127
affiliates.
@@ -225,8 +225,8 @@
225225
<footer class="devsite-utility-footer">
226226
<nav class="devsite-utility-footer-nav devsite-nav devsite-full-site-width">
227227
<span class="devsite-utility-footer-links">
228-
<a href="https://developers.google.com/site-terms/">Terms</a> |
229-
<a href="https://www.google.com/intl/en/privacy/">Privacy</a>
228+
<a href="https://developers.google.com/site-terms">Terms</a> |
229+
<a href="https://www.google.com/intl/en/policies/privacy/">Privacy</a>
230230
</span>
231231
<form class="devsite-utility-footer-language">
232232
<select id="langSelector" class="kd-select">

gae/home.tpl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -174,8 +174,8 @@
174174
<footer class="devsite-utility-footer">
175175
<nav class="devsite-utility-footer-nav devsite-nav devsite-full-site-width">
176176
<span class="devsite-utility-footer-links">
177-
<a href="https://developers.google.com/site-terms/">Terms</a> |
178-
<a href="https://www.google.com/intl/en/privacy/">Privacy</a>
177+
<a href="https://developers.google.com/site-terms">Terms</a> |
178+
<a href="https://www.google.com/intl/en/policies/privacy/">Privacy</a>
179179
</span>
180180
<form class="devsite-utility-footer-language">
181181
<select id="langSelector" class="kd-select">
Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
Metadata-Version: 1.1
2+
Name: Markdown
3+
Version: 2.6.7
4+
Summary: Python implementation of Markdown.
5+
Home-page: https://pythonhosted.org/Markdown/
6+
Author: Waylan Limberg
7+
Author-email: waylan.limberg [at] icloud.com
8+
License: BSD License
9+
Download-URL: http://pypi.python.org/packages/source/M/Markdown/Markdown-2.6.7.tar.gz
10+
Description:
11+
This is a Python implementation of John Gruber's Markdown_.
12+
It is almost completely compliant with the reference implementation,
13+
though there are a few known issues. See Features_ for information
14+
on what exactly is supported and what is not. Additional features are
15+
supported by the `Available Extensions`_.
16+
17+
.. _Markdown: http://daringfireball.net/projects/markdown/
18+
.. _Features: https://pythonhosted.org/Markdown/index.html#Features
19+
.. _`Available Extensions`: https://pythonhosted.org/Markdown/extensions/index.html
20+
21+
Support
22+
=======
23+
24+
You may ask for help and discuss various other issues on the
25+
`mailing list`_ and report bugs on the `bug tracker`_.
26+
27+
.. _`mailing list`: http://lists.sourceforge.net/lists/listinfo/python-markdown-discuss
28+
.. _`bug tracker`: http://github.com/waylan/Python-Markdown/issues
29+
30+
Platform: UNKNOWN
31+
Classifier: Development Status :: 5 - Production/Stable
32+
Classifier: License :: OSI Approved :: BSD License
33+
Classifier: Operating System :: OS Independent
34+
Classifier: Programming Language :: Python
35+
Classifier: Programming Language :: Python :: 2
36+
Classifier: Programming Language :: Python :: 2.7
37+
Classifier: Programming Language :: Python :: 3
38+
Classifier: Programming Language :: Python :: 3.2
39+
Classifier: Programming Language :: Python :: 3.3
40+
Classifier: Programming Language :: Python :: 3.4
41+
Classifier: Topic :: Communications :: Email :: Filters
42+
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content :: CGI Tools/Libraries
43+
Classifier: Topic :: Internet :: WWW/HTTP :: Site Management
44+
Classifier: Topic :: Software Development :: Documentation
45+
Classifier: Topic :: Software Development :: Libraries :: Python Modules
46+
Classifier: Topic :: Text Processing :: Filters
47+
Classifier: Topic :: Text Processing :: Markup :: HTML
Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
setup.cfg
2+
Markdown.egg-info/PKG-INFO
3+
Markdown.egg-info/SOURCES.txt
4+
Markdown.egg-info/dependency_links.txt
5+
Markdown.egg-info/top_level.txt
6+
bin/markdown_py
7+
markdown/__init__.py
8+
markdown/__main__.py
9+
markdown/__version__.py
10+
markdown/blockparser.py
11+
markdown/blockprocessors.py
12+
markdown/inlinepatterns.py
13+
markdown/odict.py
14+
markdown/postprocessors.py
15+
markdown/preprocessors.py
16+
markdown/serializers.py
17+
markdown/treeprocessors.py
18+
markdown/util.py
19+
markdown/extensions/__init__.py
20+
markdown/extensions/abbr.py
21+
markdown/extensions/admonition.py
22+
markdown/extensions/attr_list.py
23+
markdown/extensions/codehilite.py
24+
markdown/extensions/def_list.py
25+
markdown/extensions/extra.py
26+
markdown/extensions/fenced_code.py
27+
markdown/extensions/footnotes.py
28+
markdown/extensions/headerid.py
29+
markdown/extensions/meta.py
30+
markdown/extensions/nl2br.py
31+
markdown/extensions/sane_lists.py
32+
markdown/extensions/smart_strong.py
33+
markdown/extensions/smarty.py
34+
markdown/extensions/tables.py
35+
markdown/extensions/toc.py
36+
markdown/extensions/wikilinks.py
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Lines changed: 66 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,66 @@
1+
../markdown/__init__.py
2+
../markdown/__main__.py
3+
../markdown/__version__.py
4+
../markdown/blockparser.py
5+
../markdown/blockprocessors.py
6+
../markdown/inlinepatterns.py
7+
../markdown/odict.py
8+
../markdown/postprocessors.py
9+
../markdown/preprocessors.py
10+
../markdown/serializers.py
11+
../markdown/treeprocessors.py
12+
../markdown/util.py
13+
../markdown/extensions/__init__.py
14+
../markdown/extensions/abbr.py
15+
../markdown/extensions/admonition.py
16+
../markdown/extensions/attr_list.py
17+
../markdown/extensions/codehilite.py
18+
../markdown/extensions/def_list.py
19+
../markdown/extensions/extra.py
20+
../markdown/extensions/fenced_code.py
21+
../markdown/extensions/footnotes.py
22+
../markdown/extensions/headerid.py
23+
../markdown/extensions/meta.py
24+
../markdown/extensions/nl2br.py
25+
../markdown/extensions/sane_lists.py
26+
../markdown/extensions/smart_strong.py
27+
../markdown/extensions/smarty.py
28+
../markdown/extensions/tables.py
29+
../markdown/extensions/toc.py
30+
../markdown/extensions/wikilinks.py
31+
../markdown/__init__.pyc
32+
../markdown/__main__.pyc
33+
../markdown/__version__.pyc
34+
../markdown/blockparser.pyc
35+
../markdown/blockprocessors.pyc
36+
../markdown/inlinepatterns.pyc
37+
../markdown/odict.pyc
38+
../markdown/postprocessors.pyc
39+
../markdown/preprocessors.pyc
40+
../markdown/serializers.pyc
41+
../markdown/treeprocessors.pyc
42+
../markdown/util.pyc
43+
../markdown/extensions/__init__.pyc
44+
../markdown/extensions/abbr.pyc
45+
../markdown/extensions/admonition.pyc
46+
../markdown/extensions/attr_list.pyc
47+
../markdown/extensions/codehilite.pyc
48+
../markdown/extensions/def_list.pyc
49+
../markdown/extensions/extra.pyc
50+
../markdown/extensions/fenced_code.pyc
51+
../markdown/extensions/footnotes.pyc
52+
../markdown/extensions/headerid.pyc
53+
../markdown/extensions/meta.pyc
54+
../markdown/extensions/nl2br.pyc
55+
../markdown/extensions/sane_lists.pyc
56+
../markdown/extensions/smart_strong.pyc
57+
../markdown/extensions/smarty.pyc
58+
../markdown/extensions/tables.pyc
59+
../markdown/extensions/toc.pyc
60+
../markdown/extensions/wikilinks.pyc
61+
.
62+
dependency_links.txt
63+
PKG-INFO
64+
SOURCES.txt
65+
top_level.txt
66+
../../../bin/markdown_py
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
markdown

0 commit comments

Comments
 (0)