blob: f78fac4cc2e67e35fa8ab3d42eb31e7100d06dd8 [file] [log] [blame]
dprankeb08af212015-10-06 17:44:36 -07001Name: Python-Markdown
揚帆起航0f447352022-11-28 22:32:11 +00002URL: https://files.pythonhosted.org/packages/85/7e/133e943e97a943d2f1d8bae0c5060f8ac50e6691754eb9dbe036b047a9bb/Markdown-3.4.1.tar.gz
3Version: 3.4.1
dprankeb08af212015-10-06 17:44:36 -07004Revision: 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
Yu-Ping Wu6a8f3a22021-11-24 00:45:03 +000026 rm -fr setup.py setup.cfg makefile MANIFEST.in PKG-INFO Markdown.egg-info \
27 pyproject.toml tests doc-requirements.txt docs mkdocs.yml INSTALL.md
28 cp ../README.chromium ./
dprankeb08af212015-10-06 17:44:36 -070029
30 # update the version numbers in README.chromium
31
Yu-Ping Wu6a8f3a22021-11-24 00:45:03 +000032 cd ../
33 rm -fr markdown/
34 mv Markdown-$VERSION/* ./