blob: d3b165342aab130badf2ba10dcbd2fb974630180 [file] [log] [blame]
dprankeb08af212015-10-06 17:44:36 -07001Name: Python-Markdown
2URL: https://pypi.python.org/packages/source/M/Markdown/Markdown-2.6.2.tar.gz#md5=256d19afcc564dc4ce4c229bb762f7ae
3Version: 2.6.2
4Revision: None
5Security Critical: no
6License: BSD
7License File: NOT_SHIPPED
8
9Description:
10
11Python-Markdown is a pure Python parser for Markdown.
12
13//tools/md_browser uses it to provide a local previewer for our
14Markdown-based documentation.
15
16This code is not considered security critical since it is only used by
17developer utilities. This should never be linked into chrome or any production
18code.
19
20To update this, do something roughly along the lines of:
21
22 cd ..
23 wget $URL # A newer version of the above URL
24 tar xvzf Markdown-$VERSION.tar.gz
25 cd Markdown-$VERSION
26 rm -fr bin docs INSTALL.md makefile MANIFEST PKG-INFO \
27 run-tests.py setup.py tests tox.ini
28 cp ../Python-Markdown/README.chromium .
29
30 # update the version numbers in README.chromium
31
32 cd ..
33 rm -fr Python-Markdown
34 mv Markdown-$VERSION Python-Markdown